rl-agents
rl-agents copied to clipboard
How to config the exploration
Thanks for your help. How to config the exploration in training codes.

you can configure the DQN agent with
dict(exploration=
dict(temperature=1.0,
final_temperature=0.1,
tau=5000)
)