October 2018
Intermediate to advanced
252 pages
6h 49m
English
Let's go ahead and implement the Dueling DQN agent-based Cartpole playing program. Perform the following steps to get the agent in place:
dqn = DQNAgent(model=model, nb_actions=nb_actions, memory=memory, nb_steps_warmup=10, enable_dueling_network=True, target_model_update=1e-2, policy=policy)
ENV_NAME = 'CartPole-v0' ...