COB integration - finally
This commit is contained in:
@ -140,7 +140,7 @@ class TradingOrchestrator:
|
||||
from NN.models.dqn_agent import DQNAgent
|
||||
state_size = self.config.rl.get('state_size', 13800) # Enhanced with COB features
|
||||
action_size = self.config.rl.get('action_space', 3)
|
||||
self.rl_agent = DQNAgent(state_size=state_size, action_size=action_size)
|
||||
self.rl_agent = DQNAgent(state_shape=state_size, n_actions=action_size)
|
||||
|
||||
# Load best checkpoint and capture initial state
|
||||
if hasattr(self.rl_agent, 'load_best_checkpoint'):
|
||||
|
Reference in New Issue
Block a user