eleurent / rl-agents

Implementations of Reinforcement Learning and Planning algorithms
MIT License
553 stars 149 forks source link

How to config the exploration #94

Open qinxianyuzi opened 1 year ago

qinxianyuzi commented 1 year ago

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

eleurent commented 1 year ago

you can configure the DQN agent with

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