4ndr3lu15 commited on
Commit
c2ed452
·
verified ·
1 Parent(s): c7949ed

Upload templates/cartpole-test.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. templates/cartpole-test.yaml +38 -0
templates/cartpole-test.yaml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: cartpole-test
2
+ task: CartPole-v1
3
+ algorithm: ppo
4
+ seeds:
5
+ - 42
6
+ hyperparams:
7
+ total_steps: 50000
8
+ learning_rate: 0.0003
9
+ gamma: 0.99
10
+ gae_lambda: 0.95
11
+ clip_epsilon: 0.2
12
+ value_coef: 0.5
13
+ entropy_coef: 0.01
14
+ max_grad_norm: 0.5
15
+ rollout_steps: 512
16
+ num_envs: 4
17
+ num_minibatches: 4
18
+ update_epochs: 4
19
+ network:
20
+ actor_hidden:
21
+ - 64
22
+ - 64
23
+ critic_hidden:
24
+ - 64
25
+ - 64
26
+ activation: tanh
27
+ shared_backbone: false
28
+ trace:
29
+ checkpoint_steps:
30
+ - 25000
31
+ - 50000
32
+ checkpoint_freq: null
33
+ log_freq: 100
34
+ video_freq: 10000
35
+ description: Quick CartPole test for pipeline validation
36
+ tags:
37
+ - test
38
+ - quick