Fix imports

This commit is contained in:
Urtzi Alfaro
2025-07-18 14:41:39 +02:00
parent a469f0c01d
commit 4073222888
30 changed files with 123 additions and 119 deletions

View File

@@ -3,7 +3,7 @@ ML Training implementation
"""
import asyncio
import logging
import structlog
from typing import Dict, Any, List
import pandas as pd
from datetime import datetime
@@ -15,7 +15,7 @@ from sklearn.metrics import mean_absolute_error, mean_squared_error, r2_score
from app.core.config import settings
logger = logging.getLogger(__name__)
logger = structlog.get_logger()
class MLTrainer:
"""ML training implementation"""