removed COB 400M Model, text data stream wip

This commit is contained in:
Dobromir Popov
2025-09-02 16:16:01 +03:00
parent 15cc694669
commit e0fb76d9c7
7 changed files with 398 additions and 24 deletions

View File

@@ -341,11 +341,11 @@ class TradingOrchestrator:
logger.warning("Extrema trainer not available")
self.extrema_trainer = None
# COB RL functionality is now integrated into the Enhanced CNN model
# The Enhanced CNN already receives COB data and has microstructure attention
# This eliminates redundancy and improves context integration
logger.info("COB RL functionality integrated into Enhanced CNN - no separate model needed")
self.cob_rl_agent = None # Deprecated in favor of Enhanced CNN integration
# COB RL Model REMOVED - See COB_MODEL_ARCHITECTURE_DOCUMENTATION.md
# Reason: Need quality COB data first before evaluating massive parameter benefit
# Will recreate improved version when COB data pipeline is fixed
logger.info("COB RL model removed - focusing on COB data quality first")
self.cob_rl_agent = None
# Initialize TRANSFORMER Model
try:
@@ -488,9 +488,9 @@ class TradingOrchestrator:
except Exception as e:
logger.error(f"Failed to register Extrema Trainer: {e}")
# COB RL functionality is now integrated into Enhanced CNN
# No separate registration needed - COB analysis is part of CNN microstructure attention
logger.info("COB RL functionality integrated into Enhanced CNN - no separate registration needed")
# COB RL Model registration removed - model was removed for cleanup
# See COB_MODEL_ARCHITECTURE_DOCUMENTATION.md for recreation details
logger.info("COB RL model registration skipped - model removed pending COB data quality improvements")
# Register Transformer Model
if hasattr(self, 'transformer_model') and self.transformer_model:
@@ -548,7 +548,7 @@ class TradingOrchestrator:
# Normalize weights after all registrations
self._normalize_weights()
logger.info(f"Current model weights: {self.model_weights}")
logger.info("COB_RL consolidation completed - Enhanced CNN now handles microstructure analysis")
logger.info("COB_RL model removed - cleaner architecture pending COB data quality fixes")
except Exception as e:
logger.error(f"Error initializing ML models: {e}")