rl-agents icon indicating copy to clipboard operation
rl-agents copied to clipboard

How to config the exploration

Open qinxianyuzi opened this issue 2 years ago • 1 comments

Thanks for your help. How to config the exploration in training codes. 2023-03-09_20-36

qinxianyuzi avatar Mar 09 '23 12:03 qinxianyuzi

you can configure the DQN agent with

dict(exploration=
              dict(temperature=1.0,
                    final_temperature=0.1,
                    tau=5000)
)

eleurent avatar Mar 18 '23 13:03 eleurent