kinkpunk commited on
Commit
a4364c5
·
1 Parent(s): 95f8e74

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md CHANGED
@@ -21,6 +21,37 @@
21
  ```
22
  mlagents-learn ./config/ppo/SnowballTarget.yaml --run-id="SnowballTarget-v1" --resume
23
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  ### Watch your Agent play
25
  You can watch your agent **playing directly in your browser:**.
26
 
 
21
  ```
22
  mlagents-learn ./config/ppo/SnowballTarget.yaml --run-id="SnowballTarget-v1" --resume
23
  ```
24
+ ### Training hyperparameters
25
+ ```python
26
+ behaviors:
27
+ SnowballTarget:
28
+ trainer_type: ppo
29
+ summary_freq: 10000
30
+ keep_checkpoints: 5
31
+ checkpoint_interval: 50000
32
+ max_steps: 900000
33
+ time_horizon: 128
34
+ threaded: true
35
+ hyperparameters:
36
+ learning_rate: 0.0001
37
+ learning_rate_schedule: linear
38
+ batch_size: 128
39
+ buffer_size: 4096
40
+ beta: 0.005
41
+ epsilon: 0.2
42
+ lambd: 0.95
43
+ num_epoch: 5
44
+ network_settings:
45
+ normalize: false
46
+ hidden_units: 256
47
+ num_layers: 3
48
+ vis_encode_type: simple
49
+ reward_signals:
50
+ extrinsic:
51
+ gamma: 0.99
52
+ strength: 1.0
53
+ ```
54
+
55
  ### Watch your Agent play
56
  You can watch your agent **playing directly in your browser:**.
57