pneuma-pygame/utils/hyperparams.py

17 lines
242 B
Python
Raw Normal View History

2024-02-10 17:11:28 +00:00
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,
}