pneuma-pygame/utils/hyperparams.py

17 lines
240 B
Python
Raw Normal View History

2024-02-10 17:11:28 +00:00
HPARAMS = {
2024-03-22 12:20:01 +00:00
"horizon": 256,
"num_epochs": 10,
"batch_size": 15,
2024-02-10 17:11:28 +00:00
"policy_clip": 0.1,
"discount_factor": 0.99,
"GAE_lambda": 0.95,
"entropy_coeff": 0.01,
"value_coeff": 0.5,
"learning_rate": 0.0003,
}