You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The stable baselines agents can't be used from the train_from_config() >> run_training_session().
assertissubclass(agent, (q_learning_agent.QLearningAgent, actorcritic_agent.ActorCriticAgent)), \
f'the RL_agent_class passed must be a subclass of either QLearningAgent or ActorCriticAgent: {agent}'
It seems like run_training_session is used for ActorCriticAgent and QLearningAgent, but StableBaselinesAgents are invoked differently.
The text was updated successfully, but these errors were encountered:
The stable baselines agents can't be used from the
train_from_config() >> run_training_session()
.It seems like
run_training_session
is used for ActorCriticAgent and QLearningAgent, but StableBaselinesAgents are invoked differently.The text was updated successfully, but these errors were encountered: