doc train bot results

This commit is contained in:
Henri Bourcereau 2025-08-03 22:16:28 +02:00
parent 744a70cf1d
commit fc9733b729
2 changed files with 418 additions and 1 deletions

View file

@ -13,7 +13,7 @@ fn main() {
let conf = dqn_model::DqnConfig {
num_episodes: 40,
// memory_size: 8192, // must be set in dqn_model.rs with the MEMORY_SIZE constant
// max_steps: 1000, // must be set in environment.rs with the MAX_STEPS constant
// max_steps: 700, // must be set in environment.rs with the MAX_STEPS constant
dense_size: 256, // neural network complexity
eps_start: 0.9, // epsilon initial value (0.9 => more exploration)
eps_end: 0.05,