pneuma-pygame/utils/hyperparams.py
Vasilis Valatsos ff8fa7d9e7 Big update
2024-02-10 18:11:28 +01:00

16 lines
242 B
Python

HPARAMS = {
"horizon": 2048,
"num_epochs": 15,
"batch_size": 128,
"policy_clip": 0.1,
"discount_factor": 0.99,
"GAE_lambda": 0.95,
"entropy_coeff": 0.01,
"value_coeff": 0.5,
"learning_rate": 0.0003,
}