britojr commited on
Commit
c7cd709
1 Parent(s): fe22907

First Push

Browse files
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: ml-agents
3
+ tags:
4
+ - SnowballTarget
5
+ - deep-reinforcement-learning
6
+ - reinforcement-learning
7
+ - ML-Agents-SnowballTarget
8
+ ---
9
+
10
+ # **ppo** Agent playing **SnowballTarget**
11
+ This is a trained model of a **ppo** agent playing **SnowballTarget** using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
12
+
13
+ ## Usage (with ML-Agents)
14
+ The Documentation: https://github.com/huggingface/ml-agents#get-started
15
+ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
16
+
17
+
18
+ ### Resume the training
19
+ ```
20
+ mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
21
+ ```
22
+ ### Watch your Agent play
23
+ You can watch your agent **playing directly in your browser:**.
24
+
25
+ 1. Go to https://huggingface.co/spaces/unity/ML-Agents-SnowballTarget
26
+ 2. Step 1: Find your model_id: britojr/ppo-SnowballTarget
27
+ 3. Step 2: Select your *.nn /*.onnx file
28
+ 4. Click on Watch the agent play 👀
29
+
SnowballTarget.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ce992b6187a4b239c9a47658ac46094fefc0ca682d4169b4233d96635b7cc7b
3
+ size 99536
SnowballTarget/SnowballTarget-2168.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ce992b6187a4b239c9a47658ac46094fefc0ca682d4169b4233d96635b7cc7b
3
+ size 99536
SnowballTarget/SnowballTarget-2168.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f96f4b5b4c59488f14f23fe8e93027ac36a0ed8e5067487e73a5791728537cfa
3
+ size 576292
SnowballTarget/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f96f4b5b4c59488f14f23fe8e93027ac36a0ed8e5067487e73a5791728537cfa
3
+ size 576292
SnowballTarget/events.out.tfevents.1679157629.060a8fc93fef.3263.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f1eece4c840a56868b04470370c3aeb70ee14fc148f968b58dfa47e4e677e14
3
+ size 1645
config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"default_settings": null, "behaviors": {"SnowballTarget": {"trainer_type": "ppo", "hyperparameters": {"batch_size": 64, "buffer_size": 1024, "learning_rate": 0.003, "beta": 0.005, "epsilon": 0.2, "lambd": 0.95, "num_epoch": 3, "shared_critic": false, "learning_rate_schedule": "linear", "beta_schedule": "linear", "epsilon_schedule": "linear"}, "checkpoint_interval": 5000, "network_settings": {"normalize": false, "hidden_units": 64, "num_layers": 1, "vis_encode_type": "simple", "memory": null, "goal_conditioning_type": "hyper", "deterministic": false}, "reward_signals": {"extrinsic": {"gamma": 0.99, "strength": 1.0, "network_settings": {"normalize": false, "hidden_units": 128, "num_layers": 2, "vis_encode_type": "simple", "memory": null, "goal_conditioning_type": "hyper", "deterministic": false}}}, "init_path": null, "keep_checkpoints": 10, "even_checkpoints": false, "max_steps": 2000, "time_horizon": 64, "summary_freq": 1000, "threaded": true, "self_play": null, "behavioral_cloning": null}}, "env_settings": {"env_path": "./training-envs-executables/linux/SnowballTarget/SnowballTarget", "env_args": null, "base_port": 5005, "num_envs": 1, "num_areas": 1, "seed": -1, "max_lifetime_restarts": 10, "restarts_rate_limit_n": 1, "restarts_rate_limit_period_s": 60}, "engine_settings": {"width": 84, "height": 84, "quality_level": 5, "time_scale": 20, "target_frame_rate": -1, "capture_frame_rate": 60, "no_graphics": true}, "environment_parameters": null, "checkpoint_settings": {"run_id": "SnowballTarget1", "initialize_from": null, "load_model": false, "resume": false, "force": false, "train_model": false, "inference": false, "results_dir": "results"}, "torch_settings": {"device": null}, "debug": false}
configuration.yaml ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_settings: null
2
+ behaviors:
3
+ SnowballTarget:
4
+ trainer_type: ppo
5
+ hyperparameters:
6
+ batch_size: 64
7
+ buffer_size: 1024
8
+ learning_rate: 0.003
9
+ beta: 0.005
10
+ epsilon: 0.2
11
+ lambd: 0.95
12
+ num_epoch: 3
13
+ shared_critic: false
14
+ learning_rate_schedule: linear
15
+ beta_schedule: linear
16
+ epsilon_schedule: linear
17
+ checkpoint_interval: 5000
18
+ network_settings:
19
+ normalize: false
20
+ hidden_units: 64
21
+ num_layers: 1
22
+ vis_encode_type: simple
23
+ memory: null
24
+ goal_conditioning_type: hyper
25
+ deterministic: false
26
+ reward_signals:
27
+ extrinsic:
28
+ gamma: 0.99
29
+ strength: 1.0
30
+ network_settings:
31
+ normalize: false
32
+ hidden_units: 128
33
+ num_layers: 2
34
+ vis_encode_type: simple
35
+ memory: null
36
+ goal_conditioning_type: hyper
37
+ deterministic: false
38
+ init_path: null
39
+ keep_checkpoints: 10
40
+ even_checkpoints: false
41
+ max_steps: 2000
42
+ time_horizon: 64
43
+ summary_freq: 1000
44
+ threaded: true
45
+ self_play: null
46
+ behavioral_cloning: null
47
+ env_settings:
48
+ env_path: ./training-envs-executables/linux/SnowballTarget/SnowballTarget
49
+ env_args: null
50
+ base_port: 5005
51
+ num_envs: 1
52
+ num_areas: 1
53
+ seed: -1
54
+ max_lifetime_restarts: 10
55
+ restarts_rate_limit_n: 1
56
+ restarts_rate_limit_period_s: 60
57
+ engine_settings:
58
+ width: 84
59
+ height: 84
60
+ quality_level: 5
61
+ time_scale: 20
62
+ target_frame_rate: -1
63
+ capture_frame_rate: 60
64
+ no_graphics: true
65
+ environment_parameters: null
66
+ checkpoint_settings:
67
+ run_id: SnowballTarget1
68
+ initialize_from: null
69
+ load_model: false
70
+ resume: false
71
+ force: false
72
+ train_model: false
73
+ inference: false
74
+ results_dir: results
75
+ torch_settings:
76
+ device: null
77
+ debug: false
run_logs/Player-0.log ADDED
@@ -0,0 +1,262 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = '/content/ml-agents/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/Managed'
2
+ Mono config path = '/content/ml-agents/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/MonoBleedingEdge/etc'
3
+ Preloaded 'lib_burst_generated.so'
4
+ Preloaded 'libgrpc_csharp_ext.x64.so'
5
+ PlayerPrefs - Creating folder: /root/.config/unity3d/Hugging Face
6
+ PlayerPrefs - Creating folder: /root/.config/unity3d/Hugging Face/SnowballTarget
7
+ Unable to load player prefs
8
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
9
+ [Subsystems] Discovering subsystems at path /content/ml-agents/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/UnitySubsystems
10
+ Forcing GfxDevice: Null
11
+ GfxDevice: creating device client; threaded=0; jobified=0
12
+ NullGfxDevice:
13
+ Version: NULL 1.0 [1.0]
14
+ Renderer: Null Device
15
+ Vendor: Unity Technologies
16
+ ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
17
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
18
+ ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
19
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
20
+ ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
21
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
22
+ ALSA lib conf.c:5220:(snd_config_expand) Evaluate error: No such file or directory
23
+ ALSA lib pcm.c:2642:(snd_pcm_open_noupdate) Unknown PCM default
24
+ FMOD failed to initialize the output device.: "Error initializing output device. " (60)
25
+ Forced to initialize FMOD to to the device driver's system output rate 48000, this may impact performance and/or give inconsistent experiences compared to selected sample rate 48000
26
+ ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
27
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
28
+ ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
29
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
30
+ ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
31
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
32
+ ALSA lib conf.c:5220:(snd_config_expand) Evaluate error: No such file or directory
33
+ ALSA lib pcm.c:2642:(snd_pcm_open_noupdate) Unknown PCM default
34
+ FMOD failed to initialize the output device.: "Error initializing output device. " (60)
35
+ FMOD initialized on nosound output
36
+ Begin MonoManager ReloadAssembly
37
+ - Completed reload, in 0.119 seconds
38
+ ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
39
+ ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
40
+ ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
41
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
42
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
43
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
44
+ ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
45
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
46
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
47
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
48
+ UnloadTime: 1.002101 ms
49
+ ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
50
+ requesting resize 84 x 84
51
+ Setting up 1 worker threads for Enlighten.
52
+ Memory Statistics:
53
+ [ALLOC_TEMP_TLS] TLS Allocator
54
+ StackAllocators :
55
+ [ALLOC_TEMP_MAIN]
56
+ Peak usage frame count: [8.0 KB-16.0 KB]: 60 frames, [16.0 KB-32.0 KB]: 1 frames, [2.0 MB-4.0 MB]: 1 frames
57
+ Initial Block Size 4.0 MB
58
+ Current Block Size 4.0 MB
59
+ Peak Allocated Bytes 2.0 MB
60
+ Overflow Count 0
61
+ [ALLOC_TEMP_Loading.AsyncRead]
62
+ Initial Block Size 64.0 KB
63
+ Current Block Size 64.0 KB
64
+ Peak Allocated Bytes 198 B
65
+ Overflow Count 0
66
+ [ALLOC_TEMP_Loading.PreloadManager]
67
+ Initial Block Size 256.0 KB
68
+ Current Block Size 304.0 KB
69
+ Peak Allocated Bytes 228.9 KB
70
+ Overflow Count 4
71
+ [ALLOC_TEMP_Background Job.Worker 8]
72
+ Initial Block Size 32.0 KB
73
+ Current Block Size 32.0 KB
74
+ Peak Allocated Bytes 0 B
75
+ Overflow Count 0
76
+ [ALLOC_TEMP_Background Job.Worker 9]
77
+ Initial Block Size 32.0 KB
78
+ Current Block Size 32.0 KB
79
+ Peak Allocated Bytes 0 B
80
+ Overflow Count 0
81
+ [ALLOC_TEMP_Job.Worker 0]
82
+ Initial Block Size 256.0 KB
83
+ Current Block Size 256.0 KB
84
+ Peak Allocated Bytes 3.6 KB
85
+ Overflow Count 0
86
+ [ALLOC_TEMP_Background Job.Worker 10]
87
+ Initial Block Size 32.0 KB
88
+ Current Block Size 32.0 KB
89
+ Peak Allocated Bytes 0 B
90
+ Overflow Count 0
91
+ [ALLOC_TEMP_Background Job.Worker 14]
92
+ Initial Block Size 32.0 KB
93
+ Current Block Size 32.0 KB
94
+ Peak Allocated Bytes 0 B
95
+ Overflow Count 0
96
+ [ALLOC_TEMP_Background Job.Worker 6]
97
+ Initial Block Size 32.0 KB
98
+ Current Block Size 32.0 KB
99
+ Peak Allocated Bytes 0 B
100
+ Overflow Count 0
101
+ [ALLOC_TEMP_Background Job.Worker 12]
102
+ Initial Block Size 32.0 KB
103
+ Current Block Size 32.0 KB
104
+ Peak Allocated Bytes 0 B
105
+ Overflow Count 0
106
+ [ALLOC_TEMP_EnlightenWorker]
107
+ Initial Block Size 64.0 KB
108
+ Current Block Size 64.0 KB
109
+ Peak Allocated Bytes 0 B
110
+ Overflow Count 0
111
+ [ALLOC_TEMP_Background Job.Worker 15]
112
+ Initial Block Size 32.0 KB
113
+ Current Block Size 32.0 KB
114
+ Peak Allocated Bytes 0 B
115
+ Overflow Count 0
116
+ [ALLOC_TEMP_Background Job.Worker 1]
117
+ Initial Block Size 32.0 KB
118
+ Current Block Size 32.0 KB
119
+ Peak Allocated Bytes 0 B
120
+ Overflow Count 0
121
+ [ALLOC_TEMP_Background Job.Worker 2]
122
+ Initial Block Size 32.0 KB
123
+ Current Block Size 32.0 KB
124
+ Peak Allocated Bytes 0 B
125
+ Overflow Count 0
126
+ [ALLOC_TEMP_Background Job.Worker 7]
127
+ Initial Block Size 32.0 KB
128
+ Current Block Size 32.0 KB
129
+ Peak Allocated Bytes 0 B
130
+ Overflow Count 0
131
+ [ALLOC_TEMP_AssetGarbageCollectorHelper]
132
+ Initial Block Size 64.0 KB
133
+ Current Block Size 64.0 KB
134
+ Peak Allocated Bytes 0 B
135
+ Overflow Count 0
136
+ [ALLOC_TEMP_Background Job.Worker 5]
137
+ Initial Block Size 32.0 KB
138
+ Current Block Size 32.0 KB
139
+ Peak Allocated Bytes 0 B
140
+ Overflow Count 0
141
+ [ALLOC_TEMP_Background Job.Worker 13]
142
+ Initial Block Size 32.0 KB
143
+ Current Block Size 32.0 KB
144
+ Peak Allocated Bytes 0 B
145
+ Overflow Count 0
146
+ [ALLOC_TEMP_Background Job.Worker 11]
147
+ Initial Block Size 32.0 KB
148
+ Current Block Size 32.0 KB
149
+ Peak Allocated Bytes 0 B
150
+ Overflow Count 0
151
+ [ALLOC_TEMP_Background Job.Worker 3]
152
+ Initial Block Size 32.0 KB
153
+ Current Block Size 32.0 KB
154
+ Peak Allocated Bytes 0 B
155
+ Overflow Count 0
156
+ [ALLOC_TEMP_Background Job.Worker 0]
157
+ Initial Block Size 32.0 KB
158
+ Current Block Size 32.0 KB
159
+ Peak Allocated Bytes 0 B
160
+ Overflow Count 0
161
+ [ALLOC_TEMP_Background Job.Worker 4]
162
+ Initial Block Size 32.0 KB
163
+ Current Block Size 32.0 KB
164
+ Peak Allocated Bytes 0 B
165
+ Overflow Count 0
166
+ [ALLOC_TEMP_BatchDeleteObjects]
167
+ Initial Block Size 64.0 KB
168
+ Current Block Size 64.0 KB
169
+ Peak Allocated Bytes 0 B
170
+ Overflow Count 0
171
+ [ALLOC_DEFAULT] Dual Thread Allocator
172
+ Peak main deferred allocation count 25
173
+ [ALLOC_BUCKET]
174
+ Large Block size 4.0 MB
175
+ Used Block count 1
176
+ Peak Allocated bytes 1.0 MB
177
+ [ALLOC_DEFAULT_MAIN]
178
+ Peak usage frame count: [4.0 MB-8.0 MB]: 62 frames
179
+ Requested Block Size 16.0 MB
180
+ Peak Block count 1
181
+ Peak Allocated memory 5.1 MB
182
+ Peak Large allocation bytes 0 B
183
+ [ALLOC_DEFAULT_THREAD]
184
+ Peak usage frame count: [16.0 MB-32.0 MB]: 62 frames
185
+ Requested Block Size 16.0 MB
186
+ Peak Block count 1
187
+ Peak Allocated memory 17.8 MB
188
+ Peak Large allocation bytes 16.0 MB
189
+ [ALLOC_TEMP_JOB_1_FRAME]
190
+ Initial Block Size 2.0 MB
191
+ Used Block Count 1
192
+ Overflow Count (too large) 0
193
+ Overflow Count (full) 0
194
+ [ALLOC_TEMP_JOB_2_FRAMES]
195
+ Initial Block Size 2.0 MB
196
+ Used Block Count 1
197
+ Overflow Count (too large) 0
198
+ Overflow Count (full) 0
199
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
200
+ Initial Block Size 2.0 MB
201
+ Used Block Count 2
202
+ Overflow Count (too large) 0
203
+ Overflow Count (full) 0
204
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
205
+ Initial Block Size 1.0 MB
206
+ Used Block Count 3
207
+ Overflow Count (too large) 0
208
+ Overflow Count (full) 0
209
+ [ALLOC_GFX] Dual Thread Allocator
210
+ Peak main deferred allocation count 0
211
+ [ALLOC_BUCKET]
212
+ Large Block size 4.0 MB
213
+ Used Block count 1
214
+ Peak Allocated bytes 1.0 MB
215
+ [ALLOC_GFX_MAIN]
216
+ Peak usage frame count: [32.0 KB-64.0 KB]: 56 frames, [64.0 KB-128.0 KB]: 6 frames
217
+ Requested Block Size 16.0 MB
218
+ Peak Block count 1
219
+ Peak Allocated memory 65.6 KB
220
+ Peak Large allocation bytes 0 B
221
+ [ALLOC_GFX_THREAD]
222
+ Peak usage frame count: [32.0 KB-64.0 KB]: 62 frames
223
+ Requested Block Size 16.0 MB
224
+ Peak Block count 1
225
+ Peak Allocated memory 39.6 KB
226
+ Peak Large allocation bytes 0 B
227
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
228
+ Peak main deferred allocation count 0
229
+ [ALLOC_BUCKET]
230
+ Large Block size 4.0 MB
231
+ Used Block count 1
232
+ Peak Allocated bytes 1.0 MB
233
+ [ALLOC_CACHEOBJECTS_MAIN]
234
+ Peak usage frame count: [0.5 MB-1.0 MB]: 62 frames
235
+ Requested Block Size 4.0 MB
236
+ Peak Block count 1
237
+ Peak Allocated memory 0.6 MB
238
+ Peak Large allocation bytes 0 B
239
+ [ALLOC_CACHEOBJECTS_THREAD]
240
+ Peak usage frame count: [0.5 MB-1.0 MB]: 61 frames, [2.0 MB-4.0 MB]: 1 frames
241
+ Requested Block Size 4.0 MB
242
+ Peak Block count 1
243
+ Peak Allocated memory 2.2 MB
244
+ Peak Large allocation bytes 0 B
245
+ [ALLOC_TYPETREE] Dual Thread Allocator
246
+ Peak main deferred allocation count 0
247
+ [ALLOC_BUCKET]
248
+ Large Block size 4.0 MB
249
+ Used Block count 1
250
+ Peak Allocated bytes 1.0 MB
251
+ [ALLOC_TYPETREE_MAIN]
252
+ Peak usage frame count: [0-1.0 KB]: 62 frames
253
+ Requested Block Size 2.0 MB
254
+ Peak Block count 1
255
+ Peak Allocated memory 1.0 KB
256
+ Peak Large allocation bytes 0 B
257
+ [ALLOC_TYPETREE_THREAD]
258
+ Peak usage frame count: [1.0 KB-2.0 KB]: 62 frames
259
+ Requested Block Size 2.0 MB
260
+ Peak Block count 1
261
+ Peak Allocated memory 1.7 KB
262
+ Peak Large allocation bytes 0 B
run_logs/timers.json ADDED
@@ -0,0 +1,345 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "gauges": {
4
+ "SnowballTarget.Policy.Entropy.mean": {
5
+ "value": 2.8845996856689453,
6
+ "min": 2.8845996856689453,
7
+ "max": 2.8901844024658203,
8
+ "count": 2
9
+ },
10
+ "SnowballTarget.Policy.Entropy.sum": {
11
+ "value": 2284.60302734375,
12
+ "min": 2284.60302734375,
13
+ "max": 4196.5478515625,
14
+ "count": 2
15
+ },
16
+ "SnowballTarget.Step.mean": {
17
+ "value": 1984.0,
18
+ "min": 960.0,
19
+ "max": 1984.0,
20
+ "count": 2
21
+ },
22
+ "SnowballTarget.Step.sum": {
23
+ "value": 1984.0,
24
+ "min": 960.0,
25
+ "max": 1984.0,
26
+ "count": 2
27
+ },
28
+ "SnowballTarget.Policy.ExtrinsicValueEstimate.mean": {
29
+ "value": 0.09330964088439941,
30
+ "min": -0.02717835269868374,
31
+ "max": 0.09330964088439941,
32
+ "count": 2
33
+ },
34
+ "SnowballTarget.Policy.ExtrinsicValueEstimate.sum": {
35
+ "value": 1.4929542541503906,
36
+ "min": -0.40767529606819153,
37
+ "max": 1.4929542541503906,
38
+ "count": 2
39
+ },
40
+ "SnowballTarget.IsTraining.mean": {
41
+ "value": 1.0,
42
+ "min": 1.0,
43
+ "max": 1.0,
44
+ "count": 2
45
+ },
46
+ "SnowballTarget.IsTraining.sum": {
47
+ "value": 1.0,
48
+ "min": 1.0,
49
+ "max": 1.0,
50
+ "count": 2
51
+ },
52
+ "SnowballTarget.Environment.EpisodeLength.mean": {
53
+ "value": 199.0,
54
+ "min": 199.0,
55
+ "max": 199.0,
56
+ "count": 1
57
+ },
58
+ "SnowballTarget.Environment.EpisodeLength.sum": {
59
+ "value": 2189.0,
60
+ "min": 2189.0,
61
+ "max": 2189.0,
62
+ "count": 1
63
+ },
64
+ "SnowballTarget.Losses.PolicyLoss.mean": {
65
+ "value": 0.10753543309140999,
66
+ "min": 0.10753543309140999,
67
+ "max": 0.10753543309140999,
68
+ "count": 1
69
+ },
70
+ "SnowballTarget.Losses.PolicyLoss.sum": {
71
+ "value": 0.10753543309140999,
72
+ "min": 0.10753543309140999,
73
+ "max": 0.10753543309140999,
74
+ "count": 1
75
+ },
76
+ "SnowballTarget.Losses.ValueLoss.mean": {
77
+ "value": 0.08758385529120763,
78
+ "min": 0.08758385529120763,
79
+ "max": 0.08758385529120763,
80
+ "count": 1
81
+ },
82
+ "SnowballTarget.Losses.ValueLoss.sum": {
83
+ "value": 0.08758385529120763,
84
+ "min": 0.08758385529120763,
85
+ "max": 0.08758385529120763,
86
+ "count": 1
87
+ },
88
+ "SnowballTarget.Policy.LearningRate.mean": {
89
+ "value": 0.001080000064,
90
+ "min": 0.001080000064,
91
+ "max": 0.001080000064,
92
+ "count": 1
93
+ },
94
+ "SnowballTarget.Policy.LearningRate.sum": {
95
+ "value": 0.001080000064,
96
+ "min": 0.001080000064,
97
+ "max": 0.001080000064,
98
+ "count": 1
99
+ },
100
+ "SnowballTarget.Policy.Epsilon.mean": {
101
+ "value": 0.136,
102
+ "min": 0.136,
103
+ "max": 0.136,
104
+ "count": 1
105
+ },
106
+ "SnowballTarget.Policy.Epsilon.sum": {
107
+ "value": 0.136,
108
+ "min": 0.136,
109
+ "max": 0.136,
110
+ "count": 1
111
+ },
112
+ "SnowballTarget.Policy.Beta.mean": {
113
+ "value": 0.0018063999999999999,
114
+ "min": 0.0018063999999999999,
115
+ "max": 0.0018063999999999999,
116
+ "count": 1
117
+ },
118
+ "SnowballTarget.Policy.Beta.sum": {
119
+ "value": 0.0018063999999999999,
120
+ "min": 0.0018063999999999999,
121
+ "max": 0.0018063999999999999,
122
+ "count": 1
123
+ }
124
+ },
125
+ "metadata": {
126
+ "timer_format_version": "0.1.0",
127
+ "start_time_seconds": "1679157622",
128
+ "python_version": "3.9.16 (main, Dec 7 2022, 01:11:51) \n[GCC 9.4.0]",
129
+ "command_line_arguments": "/usr/local/bin/mlagents-learn ./config/ppo/SnowballTarget.yaml --env=./training-envs-executables/linux/SnowballTarget/SnowballTarget --run-id=SnowballTarget1 --no-graphics",
130
+ "mlagents_version": "0.31.0.dev0",
131
+ "mlagents_envs_version": "0.31.0.dev0",
132
+ "communication_protocol_version": "1.5.0",
133
+ "pytorch_version": "1.11.0+cu102",
134
+ "numpy_version": "1.21.2",
135
+ "end_time_seconds": "1679157634"
136
+ },
137
+ "total": 12.664148008000097,
138
+ "count": 1,
139
+ "self": 0.4851204170000756,
140
+ "children": {
141
+ "run_training.setup": {
142
+ "total": 0.10857023500000196,
143
+ "count": 1,
144
+ "self": 0.10857023500000196
145
+ },
146
+ "TrainerController.start_learning": {
147
+ "total": 12.07045735600002,
148
+ "count": 1,
149
+ "self": 0.023013124000044627,
150
+ "children": {
151
+ "TrainerController._reset_env": {
152
+ "total": 6.924819791999994,
153
+ "count": 1,
154
+ "self": 6.924819791999994
155
+ },
156
+ "TrainerController.advance": {
157
+ "total": 4.993732487999978,
158
+ "count": 205,
159
+ "self": 0.003576265998958661,
160
+ "children": {
161
+ "env_step": {
162
+ "total": 4.990156222001019,
163
+ "count": 205,
164
+ "self": 3.840941142001384,
165
+ "children": {
166
+ "SubprocessEnvManager._take_step": {
167
+ "total": 1.1459835140000223,
168
+ "count": 205,
169
+ "self": 0.021516336999525265,
170
+ "children": {
171
+ "TorchPolicy.evaluate": {
172
+ "total": 1.124467177000497,
173
+ "count": 205,
174
+ "self": 1.124467177000497
175
+ }
176
+ }
177
+ },
178
+ "workers": {
179
+ "total": 0.0032315659996129398,
180
+ "count": 205,
181
+ "self": 0.0,
182
+ "children": {
183
+ "worker_root": {
184
+ "total": 11.997384314999636,
185
+ "count": 205,
186
+ "is_parallel": true,
187
+ "self": 8.946508991000314,
188
+ "children": {
189
+ "run_training.setup": {
190
+ "total": 0.0,
191
+ "count": 0,
192
+ "is_parallel": true,
193
+ "self": 0.0,
194
+ "children": {
195
+ "steps_from_proto": {
196
+ "total": 0.006997588999979598,
197
+ "count": 1,
198
+ "is_parallel": true,
199
+ "self": 0.004987829000015154,
200
+ "children": {
201
+ "_process_rank_one_or_two_observation": {
202
+ "total": 0.0020097599999644444,
203
+ "count": 10,
204
+ "is_parallel": true,
205
+ "self": 0.0020097599999644444
206
+ }
207
+ }
208
+ },
209
+ "UnityEnvironment.step": {
210
+ "total": 0.05977239100002407,
211
+ "count": 1,
212
+ "is_parallel": true,
213
+ "self": 0.0005105389999471299,
214
+ "children": {
215
+ "UnityEnvironment._generate_step_input": {
216
+ "total": 0.0003257500000017899,
217
+ "count": 1,
218
+ "is_parallel": true,
219
+ "self": 0.0003257500000017899
220
+ },
221
+ "communicator.exchange": {
222
+ "total": 0.057295822000014596,
223
+ "count": 1,
224
+ "is_parallel": true,
225
+ "self": 0.057295822000014596
226
+ },
227
+ "steps_from_proto": {
228
+ "total": 0.0016402800000605566,
229
+ "count": 1,
230
+ "is_parallel": true,
231
+ "self": 0.0002958199997920019,
232
+ "children": {
233
+ "_process_rank_one_or_two_observation": {
234
+ "total": 0.0013444600002685547,
235
+ "count": 10,
236
+ "is_parallel": true,
237
+ "self": 0.0013444600002685547
238
+ }
239
+ }
240
+ }
241
+ }
242
+ }
243
+ }
244
+ },
245
+ "UnityEnvironment.step": {
246
+ "total": 3.050875323999321,
247
+ "count": 204,
248
+ "is_parallel": true,
249
+ "self": 0.1266187200009199,
250
+ "children": {
251
+ "UnityEnvironment._generate_step_input": {
252
+ "total": 0.07055531999958475,
253
+ "count": 204,
254
+ "is_parallel": true,
255
+ "self": 0.07055531999958475
256
+ },
257
+ "communicator.exchange": {
258
+ "total": 2.4724321149990374,
259
+ "count": 204,
260
+ "is_parallel": true,
261
+ "self": 2.4724321149990374
262
+ },
263
+ "steps_from_proto": {
264
+ "total": 0.38126916899977914,
265
+ "count": 204,
266
+ "is_parallel": true,
267
+ "self": 0.0777018790005286,
268
+ "children": {
269
+ "_process_rank_one_or_two_observation": {
270
+ "total": 0.30356728999925053,
271
+ "count": 2040,
272
+ "is_parallel": true,
273
+ "self": 0.30356728999925053
274
+ }
275
+ }
276
+ }
277
+ }
278
+ }
279
+ }
280
+ }
281
+ }
282
+ }
283
+ }
284
+ }
285
+ }
286
+ },
287
+ "trainer_threads": {
288
+ "total": 0.0003971500000261585,
289
+ "count": 1,
290
+ "self": 0.0003971500000261585,
291
+ "children": {
292
+ "thread_root": {
293
+ "total": 0.0,
294
+ "count": 0,
295
+ "is_parallel": true,
296
+ "self": 0.0,
297
+ "children": {
298
+ "trainer_advance": {
299
+ "total": 4.959526139990999,
300
+ "count": 6587,
301
+ "is_parallel": true,
302
+ "self": 0.12123395299306594,
303
+ "children": {
304
+ "process_trajectory": {
305
+ "total": 3.4652089289978676,
306
+ "count": 6587,
307
+ "is_parallel": true,
308
+ "self": 3.4652089289978676
309
+ },
310
+ "_update_policy": {
311
+ "total": 1.3730832580000651,
312
+ "count": 1,
313
+ "is_parallel": true,
314
+ "self": 0.3274203599995644,
315
+ "children": {
316
+ "TorchPPOOptimizer.update": {
317
+ "total": 1.0456628980005007,
318
+ "count": 60,
319
+ "is_parallel": true,
320
+ "self": 1.0456628980005007
321
+ }
322
+ }
323
+ }
324
+ }
325
+ }
326
+ }
327
+ }
328
+ }
329
+ },
330
+ "TrainerController._save_models": {
331
+ "total": 0.12849480199997743,
332
+ "count": 1,
333
+ "self": 0.0005297999999811509,
334
+ "children": {
335
+ "RLTrainer._checkpoint": {
336
+ "total": 0.12796500199999628,
337
+ "count": 1,
338
+ "self": 0.12796500199999628
339
+ }
340
+ }
341
+ }
342
+ }
343
+ }
344
+ }
345
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "SnowballTarget": {
3
+ "checkpoints": [
4
+ {
5
+ "steps": 2168,
6
+ "file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-2168.onnx",
7
+ "reward": 3.2857142857142856,
8
+ "creation_time": 1679157634.2926311,
9
+ "auxillary_file_paths": [
10
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-2168.pt"
11
+ ]
12
+ }
13
+ ],
14
+ "final_checkpoint": {
15
+ "steps": 2168,
16
+ "file_path": "results/SnowballTarget1/SnowballTarget.onnx",
17
+ "reward": 3.2857142857142856,
18
+ "creation_time": 1679157634.2926311,
19
+ "auxillary_file_paths": [
20
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-2168.pt"
21
+ ]
22
+ }
23
+ },
24
+ "metadata": {
25
+ "stats_format_version": "0.3.0",
26
+ "mlagents_version": "0.31.0.dev0",
27
+ "torch_version": "1.11.0+cu102"
28
+ }
29
+ }