Views
No views yet
CartPole-v2 environment. This model was implemented from scratch using PyTorch as part of an RL competition.1{
2 "learning_rate": 1e-3,
3 "gamma": 0.99,
4 "epsilon_start": 1.0,
5 "epsilon_final": 0.0001,
6 "epsilon_decay_rate": 0.001,
7 "buffer_size": 10000,
8 "batch_size": 64,
9 "target_update_freq": 0.005
10}