bsenst commited on
Commit
334810a
1 Parent(s): 1a19b1f

add ppo snowballtarget agent

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: bsenst/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:f72de47d3f9381123a8c41395a2a5f16c598ff4727ffaddbfa989d3e26aa418b
3
+ size 646532
SnowballTarget/SnowballTarget-1408.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f72de47d3f9381123a8c41395a2a5f16c598ff4727ffaddbfa989d3e26aa418b
3
+ size 646532
SnowballTarget/SnowballTarget-1408.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98669ac7905e423b2998e7b7f88b9538d85212a5df7101e2e1bd512565be9846
3
+ size 1284832
SnowballTarget/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98669ac7905e423b2998e7b7f88b9538d85212a5df7101e2e1bd512565be9846
3
+ size 1284832
SnowballTarget/events.out.tfevents.1680782860.ed24bde6b0fb.34290.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb0859a55a16bdcdb763809bec46346dbfcb64322ded2fc6c7508ff9f0344891
3
+ size 1112
config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"default_settings": null, "behaviors": {"SnowballTarget": {"trainer_type": "ppo", "hyperparameters": {"batch_size": 128, "buffer_size": 2048, "learning_rate": 0.0003, "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": 50000, "network_settings": {"normalize": false, "hidden_units": 256, "num_layers": 2, "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": 1000, "time_horizon": 64, "summary_freq": 10000, "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": true, "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: 128
7
+ buffer_size: 2048
8
+ learning_rate: 0.0003
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: 50000
18
+ network_settings:
19
+ normalize: false
20
+ hidden_units: 256
21
+ num_layers: 2
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: 1000
42
+ time_horizon: 64
43
+ summary_freq: 10000
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: true
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,269 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = '/kaggle/working/ml-agents/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/Managed'
2
+ Mono config path = '/kaggle/working/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
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
6
+ [Subsystems] Discovering subsystems at path /kaggle/working/ml-agents/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/UnitySubsystems
7
+ Forcing GfxDevice: Null
8
+ GfxDevice: creating device client; threaded=0; jobified=0
9
+ NullGfxDevice:
10
+ Version: NULL 1.0 [1.0]
11
+ Renderer: Null Device
12
+ Vendor: Unity Technologies
13
+ ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
14
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
15
+ ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
16
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
17
+ ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
18
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
19
+ ALSA lib conf.c:5220:(snd_config_expand) Evaluate error: No such file or directory
20
+ ALSA lib pcm.c:2642:(snd_pcm_open_noupdate) Unknown PCM default
21
+ FMOD failed to initialize the output device.: "Error initializing output device. " (60)
22
+ 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
23
+ ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
24
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
25
+ ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
26
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
27
+ ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
28
+ ALSA lib conf.c:4732:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
29
+ ALSA lib conf.c:5220:(snd_config_expand) Evaluate error: No such file or directory
30
+ ALSA lib pcm.c:2642:(snd_pcm_open_noupdate) Unknown PCM default
31
+ FMOD failed to initialize the output device.: "Error initializing output device. " (60)
32
+ FMOD initialized on nosound output
33
+ Begin MonoManager ReloadAssembly
34
+ - Completed reload, in 0.137 seconds
35
+ ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
36
+ ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
37
+ ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
38
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
39
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
40
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
41
+ ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
42
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
43
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
44
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
45
+ UnloadTime: 1.295323 ms
46
+ ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
47
+ requesting resize 84 x 84
48
+ Setting up 2 worker threads for Enlighten.
49
+ Memory Statistics:
50
+ [ALLOC_TEMP_TLS] TLS Allocator
51
+ StackAllocators :
52
+ [ALLOC_TEMP_MAIN]
53
+ Peak usage frame count: [8.0 KB-16.0 KB]: 39 frames, [2.0 MB-4.0 MB]: 1 frames
54
+ Initial Block Size 4.0 MB
55
+ Current Block Size 4.0 MB
56
+ Peak Allocated Bytes 2.0 MB
57
+ Overflow Count 0
58
+ [ALLOC_TEMP_Loading.AsyncRead]
59
+ Initial Block Size 64.0 KB
60
+ Current Block Size 64.0 KB
61
+ Peak Allocated Bytes 212 B
62
+ Overflow Count 0
63
+ [ALLOC_TEMP_Loading.PreloadManager]
64
+ Initial Block Size 256.0 KB
65
+ Current Block Size 304.0 KB
66
+ Peak Allocated Bytes 228.9 KB
67
+ Overflow Count 4
68
+ [ALLOC_TEMP_Background Job.Worker 8]
69
+ Initial Block Size 32.0 KB
70
+ Current Block Size 32.0 KB
71
+ Peak Allocated Bytes 0 B
72
+ Overflow Count 0
73
+ [ALLOC_TEMP_Background Job.Worker 9]
74
+ Initial Block Size 32.0 KB
75
+ Current Block Size 32.0 KB
76
+ Peak Allocated Bytes 0 B
77
+ Overflow Count 0
78
+ [ALLOC_TEMP_Job.Worker 0]
79
+ Initial Block Size 256.0 KB
80
+ Current Block Size 256.0 KB
81
+ Peak Allocated Bytes 3.6 KB
82
+ Overflow Count 0
83
+ [ALLOC_TEMP_Background Job.Worker 10]
84
+ Initial Block Size 32.0 KB
85
+ Current Block Size 32.0 KB
86
+ Peak Allocated Bytes 0 B
87
+ Overflow Count 0
88
+ [ALLOC_TEMP_Background Job.Worker 14]
89
+ Initial Block Size 32.0 KB
90
+ Current Block Size 32.0 KB
91
+ Peak Allocated Bytes 0 B
92
+ Overflow Count 0
93
+ [ALLOC_TEMP_Background Job.Worker 6]
94
+ Initial Block Size 32.0 KB
95
+ Current Block Size 32.0 KB
96
+ Peak Allocated Bytes 0 B
97
+ Overflow Count 0
98
+ [ALLOC_TEMP_Background Job.Worker 12]
99
+ Initial Block Size 32.0 KB
100
+ Current Block Size 32.0 KB
101
+ Peak Allocated Bytes 0 B
102
+ Overflow Count 0
103
+ [ALLOC_TEMP_EnlightenWorker] x 2
104
+ Initial Block Size 64.0 KB
105
+ Current Block Size 64.0 KB
106
+ Peak Allocated Bytes 0 B
107
+ Overflow Count 0
108
+ [ALLOC_TEMP_Background Job.Worker 15]
109
+ Initial Block Size 32.0 KB
110
+ Current Block Size 32.0 KB
111
+ Peak Allocated Bytes 0 B
112
+ Overflow Count 0
113
+ [ALLOC_TEMP_Background Job.Worker 1]
114
+ Initial Block Size 32.0 KB
115
+ Current Block Size 32.0 KB
116
+ Peak Allocated Bytes 0 B
117
+ Overflow Count 0
118
+ [ALLOC_TEMP_Background Job.Worker 2]
119
+ Initial Block Size 32.0 KB
120
+ Current Block Size 32.0 KB
121
+ Peak Allocated Bytes 0 B
122
+ Overflow Count 0
123
+ [ALLOC_TEMP_Background Job.Worker 7]
124
+ Initial Block Size 32.0 KB
125
+ Current Block Size 32.0 KB
126
+ Peak Allocated Bytes 0 B
127
+ Overflow Count 0
128
+ [ALLOC_TEMP_AssetGarbageCollectorHelper] x 3
129
+ Initial Block Size 64.0 KB
130
+ Current Block Size 64.0 KB
131
+ Peak Allocated Bytes 0 B
132
+ Overflow Count 0
133
+ [ALLOC_TEMP_Background Job.Worker 5]
134
+ Initial Block Size 32.0 KB
135
+ Current Block Size 32.0 KB
136
+ Peak Allocated Bytes 0 B
137
+ Overflow Count 0
138
+ [ALLOC_TEMP_Background Job.Worker 13]
139
+ Initial Block Size 32.0 KB
140
+ Current Block Size 32.0 KB
141
+ Peak Allocated Bytes 0 B
142
+ Overflow Count 0
143
+ [ALLOC_TEMP_Job.Worker 1]
144
+ Initial Block Size 256.0 KB
145
+ Current Block Size 256.0 KB
146
+ Peak Allocated Bytes 3.6 KB
147
+ Overflow Count 0
148
+ [ALLOC_TEMP_Job.Worker 2]
149
+ Initial Block Size 256.0 KB
150
+ Current Block Size 256.0 KB
151
+ Peak Allocated Bytes 3.6 KB
152
+ Overflow Count 0
153
+ [ALLOC_TEMP_Background Job.Worker 3]
154
+ Initial Block Size 32.0 KB
155
+ Current Block Size 32.0 KB
156
+ Peak Allocated Bytes 0 B
157
+ Overflow Count 0
158
+ [ALLOC_TEMP_Background Job.Worker 11]
159
+ Initial Block Size 32.0 KB
160
+ Current Block Size 32.0 KB
161
+ Peak Allocated Bytes 0 B
162
+ Overflow Count 0
163
+ [ALLOC_TEMP_Background Job.Worker 0]
164
+ Initial Block Size 32.0 KB
165
+ Current Block Size 32.0 KB
166
+ Peak Allocated Bytes 0 B
167
+ Overflow Count 0
168
+ [ALLOC_TEMP_Background Job.Worker 4]
169
+ Initial Block Size 32.0 KB
170
+ Current Block Size 32.0 KB
171
+ Peak Allocated Bytes 0 B
172
+ Overflow Count 0
173
+ [ALLOC_TEMP_BatchDeleteObjects]
174
+ Initial Block Size 64.0 KB
175
+ Current Block Size 64.0 KB
176
+ Peak Allocated Bytes 0 B
177
+ Overflow Count 0
178
+ [ALLOC_DEFAULT] Dual Thread Allocator
179
+ Peak main deferred allocation count 28
180
+ [ALLOC_BUCKET]
181
+ Large Block size 4.0 MB
182
+ Used Block count 1
183
+ Peak Allocated bytes 1.0 MB
184
+ [ALLOC_DEFAULT_MAIN]
185
+ Peak usage frame count: [4.0 MB-8.0 MB]: 40 frames
186
+ Requested Block Size 16.0 MB
187
+ Peak Block count 1
188
+ Peak Allocated memory 4.8 MB
189
+ Peak Large allocation bytes 0 B
190
+ [ALLOC_DEFAULT_THREAD]
191
+ Peak usage frame count: [16.0 MB-32.0 MB]: 40 frames
192
+ Requested Block Size 16.0 MB
193
+ Peak Block count 1
194
+ Peak Allocated memory 17.8 MB
195
+ Peak Large allocation bytes 16.0 MB
196
+ [ALLOC_TEMP_JOB_1_FRAME]
197
+ Initial Block Size 2.0 MB
198
+ Used Block Count 1
199
+ Overflow Count (too large) 0
200
+ Overflow Count (full) 0
201
+ [ALLOC_TEMP_JOB_2_FRAMES]
202
+ Initial Block Size 2.0 MB
203
+ Used Block Count 1
204
+ Overflow Count (too large) 0
205
+ Overflow Count (full) 0
206
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
207
+ Initial Block Size 2.0 MB
208
+ Used Block Count 2
209
+ Overflow Count (too large) 0
210
+ Overflow Count (full) 0
211
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
212
+ Initial Block Size 1.0 MB
213
+ Used Block Count 3
214
+ Overflow Count (too large) 0
215
+ Overflow Count (full) 0
216
+ [ALLOC_GFX] Dual Thread Allocator
217
+ Peak main deferred allocation count 0
218
+ [ALLOC_BUCKET]
219
+ Large Block size 4.0 MB
220
+ Used Block count 1
221
+ Peak Allocated bytes 1.0 MB
222
+ [ALLOC_GFX_MAIN]
223
+ Peak usage frame count: [32.0 KB-64.0 KB]: 36 frames, [64.0 KB-128.0 KB]: 4 frames
224
+ Requested Block Size 16.0 MB
225
+ Peak Block count 1
226
+ Peak Allocated memory 65.6 KB
227
+ Peak Large allocation bytes 0 B
228
+ [ALLOC_GFX_THREAD]
229
+ Peak usage frame count: [32.0 KB-64.0 KB]: 40 frames
230
+ Requested Block Size 16.0 MB
231
+ Peak Block count 1
232
+ Peak Allocated memory 39.6 KB
233
+ Peak Large allocation bytes 0 B
234
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
235
+ Peak main deferred allocation count 0
236
+ [ALLOC_BUCKET]
237
+ Large Block size 4.0 MB
238
+ Used Block count 1
239
+ Peak Allocated bytes 1.0 MB
240
+ [ALLOC_CACHEOBJECTS_MAIN]
241
+ Peak usage frame count: [0.5 MB-1.0 MB]: 40 frames
242
+ Requested Block Size 4.0 MB
243
+ Peak Block count 1
244
+ Peak Allocated memory 0.6 MB
245
+ Peak Large allocation bytes 0 B
246
+ [ALLOC_CACHEOBJECTS_THREAD]
247
+ Peak usage frame count: [0.5 MB-1.0 MB]: 39 frames, [2.0 MB-4.0 MB]: 1 frames
248
+ Requested Block Size 4.0 MB
249
+ Peak Block count 1
250
+ Peak Allocated memory 2.2 MB
251
+ Peak Large allocation bytes 0 B
252
+ [ALLOC_TYPETREE] Dual Thread Allocator
253
+ Peak main deferred allocation count 0
254
+ [ALLOC_BUCKET]
255
+ Large Block size 4.0 MB
256
+ Used Block count 1
257
+ Peak Allocated bytes 1.0 MB
258
+ [ALLOC_TYPETREE_MAIN]
259
+ Peak usage frame count: [0-1.0 KB]: 40 frames
260
+ Requested Block Size 2.0 MB
261
+ Peak Block count 1
262
+ Peak Allocated memory 1.0 KB
263
+ Peak Large allocation bytes 0 B
264
+ [ALLOC_TYPETREE_THREAD]
265
+ Peak usage frame count: [1.0 KB-2.0 KB]: 40 frames
266
+ Requested Block Size 2.0 MB
267
+ Peak Block count 1
268
+ Peak Allocated memory 1.7 KB
269
+ Peak Large allocation bytes 0 B
run_logs/timers.json ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "metadata": {
4
+ "timer_format_version": "0.1.0",
5
+ "start_time_seconds": "1680782859",
6
+ "python_version": "3.10.5 | packaged by conda-forge | (main, Jun 14 2022, 07:04:59) [GCC 10.3.0]",
7
+ "command_line_arguments": "ml-agents/mlagents/trainers/learn.py ./config/ppo/SnowballTarget.yaml --env=./training-envs-executables/linux/SnowballTarget/SnowballTarget --run-id=SnowballTarget1 --no-graphics --force",
8
+ "mlagents_version": "0.31.0.dev0",
9
+ "mlagents_envs_version": "0.31.0.dev0",
10
+ "communication_protocol_version": "1.5.0",
11
+ "pytorch_version": "1.11.0+cu102",
12
+ "numpy_version": "1.21.2",
13
+ "end_time_seconds": "1680782864"
14
+ },
15
+ "total": 4.8662428259999615,
16
+ "count": 1,
17
+ "self": 0.38026291799997125,
18
+ "children": {
19
+ "run_training.setup": {
20
+ "total": 0.024673117000020284,
21
+ "count": 1,
22
+ "self": 0.024673117000020284
23
+ },
24
+ "TrainerController.start_learning": {
25
+ "total": 4.46130679099997,
26
+ "count": 1,
27
+ "self": 0.06062403700207142,
28
+ "children": {
29
+ "TrainerController._reset_env": {
30
+ "total": 0.8937696269999833,
31
+ "count": 1,
32
+ "self": 0.8937696269999833
33
+ },
34
+ "TrainerController.advance": {
35
+ "total": 3.287795212997935,
36
+ "count": 131,
37
+ "self": 0.0029381669960457657,
38
+ "children": {
39
+ "env_step": {
40
+ "total": 3.284857046001889,
41
+ "count": 131,
42
+ "self": 2.64100915600784,
43
+ "children": {
44
+ "SubprocessEnvManager._take_step": {
45
+ "total": 0.6406369539977277,
46
+ "count": 131,
47
+ "self": 0.015728908997516555,
48
+ "children": {
49
+ "TorchPolicy.evaluate": {
50
+ "total": 0.6249080450002111,
51
+ "count": 131,
52
+ "self": 0.6249080450002111
53
+ }
54
+ }
55
+ },
56
+ "workers": {
57
+ "total": 0.0032109359963214956,
58
+ "count": 131,
59
+ "self": 0.0,
60
+ "children": {
61
+ "worker_root": {
62
+ "total": 4.199120163999396,
63
+ "count": 131,
64
+ "is_parallel": true,
65
+ "self": 2.010407003997443,
66
+ "children": {
67
+ "run_training.setup": {
68
+ "total": 0.0,
69
+ "count": 0,
70
+ "is_parallel": true,
71
+ "self": 0.0,
72
+ "children": {
73
+ "steps_from_proto": {
74
+ "total": 0.003694363000249723,
75
+ "count": 1,
76
+ "is_parallel": true,
77
+ "self": 0.001252010000825976,
78
+ "children": {
79
+ "_process_rank_one_or_two_observation": {
80
+ "total": 0.002442352999423747,
81
+ "count": 10,
82
+ "is_parallel": true,
83
+ "self": 0.002442352999423747
84
+ }
85
+ }
86
+ },
87
+ "UnityEnvironment.step": {
88
+ "total": 0.06070607199990263,
89
+ "count": 1,
90
+ "is_parallel": true,
91
+ "self": 0.0008654529997329519,
92
+ "children": {
93
+ "UnityEnvironment._generate_step_input": {
94
+ "total": 0.0005708850003429689,
95
+ "count": 1,
96
+ "is_parallel": true,
97
+ "self": 0.0005708850003429689
98
+ },
99
+ "communicator.exchange": {
100
+ "total": 0.05644129299980705,
101
+ "count": 1,
102
+ "is_parallel": true,
103
+ "self": 0.05644129299980705
104
+ },
105
+ "steps_from_proto": {
106
+ "total": 0.002828441000019666,
107
+ "count": 1,
108
+ "is_parallel": true,
109
+ "self": 0.0006106840000938973,
110
+ "children": {
111
+ "_process_rank_one_or_two_observation": {
112
+ "total": 0.0022177569999257685,
113
+ "count": 10,
114
+ "is_parallel": true,
115
+ "self": 0.0022177569999257685
116
+ }
117
+ }
118
+ }
119
+ }
120
+ }
121
+ }
122
+ },
123
+ "UnityEnvironment.step": {
124
+ "total": 2.188713160001953,
125
+ "count": 130,
126
+ "is_parallel": true,
127
+ "self": 0.08645828599946981,
128
+ "children": {
129
+ "UnityEnvironment._generate_step_input": {
130
+ "total": 0.0435731890020179,
131
+ "count": 130,
132
+ "is_parallel": true,
133
+ "self": 0.0435731890020179
134
+ },
135
+ "communicator.exchange": {
136
+ "total": 1.7741295920018274,
137
+ "count": 130,
138
+ "is_parallel": true,
139
+ "self": 1.7741295920018274
140
+ },
141
+ "steps_from_proto": {
142
+ "total": 0.2845520929986378,
143
+ "count": 130,
144
+ "is_parallel": true,
145
+ "self": 0.058892392007237504,
146
+ "children": {
147
+ "_process_rank_one_or_two_observation": {
148
+ "total": 0.2256597009914003,
149
+ "count": 1300,
150
+ "is_parallel": true,
151
+ "self": 0.2256597009914003
152
+ }
153
+ }
154
+ }
155
+ }
156
+ }
157
+ }
158
+ }
159
+ }
160
+ }
161
+ }
162
+ }
163
+ }
164
+ },
165
+ "trainer_threads": {
166
+ "total": 6.945099994482007e-05,
167
+ "count": 1,
168
+ "self": 6.945099994482007e-05,
169
+ "children": {
170
+ "thread_root": {
171
+ "total": 0.0,
172
+ "count": 0,
173
+ "is_parallel": true,
174
+ "self": 0.0,
175
+ "children": {
176
+ "trainer_advance": {
177
+ "total": 3.2903225010322785,
178
+ "count": 4069,
179
+ "is_parallel": true,
180
+ "self": 0.1252297930250279,
181
+ "children": {
182
+ "process_trajectory": {
183
+ "total": 3.1650927080072506,
184
+ "count": 4069,
185
+ "is_parallel": true,
186
+ "self": 3.1650927080072506
187
+ }
188
+ }
189
+ }
190
+ }
191
+ }
192
+ }
193
+ },
194
+ "TrainerController._save_models": {
195
+ "total": 0.21904846300003555,
196
+ "count": 1,
197
+ "self": 0.0014783860001443827,
198
+ "children": {
199
+ "RLTrainer._checkpoint": {
200
+ "total": 0.21757007699989117,
201
+ "count": 1,
202
+ "self": 0.21757007699989117
203
+ }
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "SnowballTarget": {
3
+ "checkpoints": [
4
+ {
5
+ "steps": 1408,
6
+ "file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-1408.onnx",
7
+ "reward": null,
8
+ "creation_time": 1680782864.3984804,
9
+ "auxillary_file_paths": [
10
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-1408.pt"
11
+ ]
12
+ }
13
+ ],
14
+ "final_checkpoint": {
15
+ "steps": 1408,
16
+ "file_path": "results/SnowballTarget1/SnowballTarget.onnx",
17
+ "reward": null,
18
+ "creation_time": 1680782864.3984804,
19
+ "auxillary_file_paths": [
20
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-1408.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
+ }