fix broken merge

This commit is contained in:
Dobromir Popov
2025-10-08 20:02:41 +03:00
parent a468c75c47
commit 270ba2e52b
12 changed files with 493 additions and 86 deletions

View File

@@ -428,7 +428,7 @@ class TimeframeInferenceCoordinator:
async def _call_model_training(self, model_name: str, symbol: str,
timeframe: TimeFrame, training_data: List[Any]):
"""
Call model-specific training function
Call model-specific training function (placeholder - not yet implemented)
Args:
model_name: Name of the model to train
@@ -438,7 +438,7 @@ class TimeframeInferenceCoordinator:
"""
# This is a placeholder for model-specific training calls
# You'll need to implement this based on your specific model interfaces
logger.debug(f"Training call for {model_name}: {len(training_data)} samples")
logger.debug(f"Training call for {model_name}: {len(training_data)} samples (not yet implemented)")
def get_inference_statistics(self) -> Dict[str, Any]:
"""Get inference coordination statistics"""