EdenYav commited on
Commit
c3f7303
1 Parent(s): 83a11e2

First Push

Browse files
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ tags:
4
+ - unity-ml-agents
5
+ - ml-agents
6
+ - deep-reinforcement-learning
7
+ - reinforcement-learning
8
+ - ML-Agents-SnowballTarget
9
+ library_name: ml-agents
10
+ ---
11
+
12
+ # **ppo** Agent playing **SnowballTarget**
13
+ This is a trained model of a **ppo** agent playing **SnowballTarget** using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
14
+
15
+ ## Usage (with ML-Agents)
16
+ The Documentation: https://github.com/huggingface/ml-agents#get-started
17
+ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
18
+
19
+
20
+ ### Resume the training
21
+ ```
22
+ mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
23
+ ```
24
+ ### Watch your Agent play
25
+ You can watch your agent **playing directly in your browser:**.
26
+
27
+ 1. Go to https://huggingface.co/spaces/unity/ML-Agents-SnowballTarget
28
+ 2. Step 1: Write your model_id: EdenYav/ppo-SnowballTarget
29
+ 3. Step 2: Select your *.nn /*.onnx file
30
+ 4. Click on Watch the agent play 👀
31
+
SnowballTarget.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47ae9f5cb552438ff301578741cff6947f4d1955f9a87e565cf6ce2d98d79e14
3
+ size 645119
SnowballTarget/SnowballTarget-6512.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47ae9f5cb552438ff301578741cff6947f4d1955f9a87e565cf6ce2d98d79e14
3
+ size 645119
SnowballTarget/SnowballTarget-6512.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d546383522b8b6cb8e090b491e3fee6f708ca2b90a877e06835a08cefbd634a8
3
+ size 3845591
SnowballTarget/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d546383522b8b6cb8e090b491e3fee6f708ca2b90a877e06835a08cefbd634a8
3
+ size 3845591
SnowballTarget/events.out.tfevents.1676357686.764a44ba2aac.3362.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3214b5ec9b9c7c6eb31035850fbd1fbc11c0a0d339cdcfccc34c17d23ed1c6ce
3
+ size 1017
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, "learning_rate_schedule": "linear", "beta_schedule": "linear", "epsilon_schedule": "linear"}, "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, "checkpoint_interval": 50000, "max_steps": 200000, "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": false, "train_model": false, "inference": false, "results_dir": "results"}, "torch_settings": {"device": null}, "debug": false}
configuration.yaml ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ learning_rate_schedule: linear
14
+ beta_schedule: linear
15
+ epsilon_schedule: linear
16
+ network_settings:
17
+ normalize: false
18
+ hidden_units: 256
19
+ num_layers: 2
20
+ vis_encode_type: simple
21
+ memory: null
22
+ goal_conditioning_type: hyper
23
+ deterministic: false
24
+ reward_signals:
25
+ extrinsic:
26
+ gamma: 0.99
27
+ strength: 1.0
28
+ network_settings:
29
+ normalize: false
30
+ hidden_units: 128
31
+ num_layers: 2
32
+ vis_encode_type: simple
33
+ memory: null
34
+ goal_conditioning_type: hyper
35
+ deterministic: false
36
+ init_path: null
37
+ keep_checkpoints: 10
38
+ checkpoint_interval: 50000
39
+ max_steps: 200000
40
+ time_horizon: 64
41
+ summary_freq: 10000
42
+ threaded: true
43
+ self_play: null
44
+ behavioral_cloning: null
45
+ env_settings:
46
+ env_path: ./training-envs-executables/linux/SnowballTarget/SnowballTarget
47
+ env_args: null
48
+ base_port: 5005
49
+ num_envs: 1
50
+ num_areas: 1
51
+ seed: -1
52
+ max_lifetime_restarts: 10
53
+ restarts_rate_limit_n: 1
54
+ restarts_rate_limit_period_s: 60
55
+ engine_settings:
56
+ width: 84
57
+ height: 84
58
+ quality_level: 5
59
+ time_scale: 20
60
+ target_frame_rate: -1
61
+ capture_frame_rate: 60
62
+ no_graphics: true
63
+ environment_parameters: null
64
+ checkpoint_settings:
65
+ run_id: SnowballTarget1
66
+ initialize_from: null
67
+ load_model: false
68
+ resume: false
69
+ force: false
70
+ train_model: false
71
+ inference: false
72
+ results_dir: results
73
+ torch_settings:
74
+ device: null
75
+ 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.085 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: 0.772108 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]: 186 frames, [16.0 KB-32.0 KB]: 3 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 29
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]: 190 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]: 190 frames
185
+ Requested Block Size 16.0 MB
186
+ Peak Block count 1
187
+ Peak Allocated memory 17.9 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]: 165 frames, [64.0 KB-128.0 KB]: 25 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]: 190 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]: 190 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]: 189 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]: 190 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]: 190 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,230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "metadata": {
4
+ "timer_format_version": "0.1.0",
5
+ "start_time_seconds": "1676357680",
6
+ "python_version": "3.8.10 (default, Nov 14 2022, 12:59:47) \n[GCC 9.4.0]",
7
+ "command_line_arguments": "/usr/local/bin/mlagents-learn ./config/ppo/SnowballTarget.yaml --env=./training-envs-executables/linux/SnowballTarget/SnowballTarget --run-id=SnowballTarget1 --no-graphics",
8
+ "mlagents_version": "0.29.0.dev0",
9
+ "mlagents_envs_version": "0.29.0.dev0",
10
+ "communication_protocol_version": "1.5.0",
11
+ "pytorch_version": "1.8.1+cu102",
12
+ "numpy_version": "1.21.6",
13
+ "end_time_seconds": "1676357704"
14
+ },
15
+ "total": 23.961669594,
16
+ "count": 1,
17
+ "self": 0.0161653220000062,
18
+ "children": {
19
+ "run_training.setup": {
20
+ "total": 0.10727534900001956,
21
+ "count": 1,
22
+ "self": 0.10727534900001956
23
+ },
24
+ "TrainerController.start_learning": {
25
+ "total": 23.838228922999974,
26
+ "count": 1,
27
+ "self": 0.6965058030009459,
28
+ "children": {
29
+ "TrainerController._reset_env": {
30
+ "total": 9.167666871999927,
31
+ "count": 1,
32
+ "self": 9.167666871999927
33
+ },
34
+ "TrainerController.advance": {
35
+ "total": 13.768805741999017,
36
+ "count": 632,
37
+ "self": 0.008519770000589233,
38
+ "children": {
39
+ "env_step": {
40
+ "total": 13.760285971998428,
41
+ "count": 632,
42
+ "self": 9.291732637994755,
43
+ "children": {
44
+ "SubprocessEnvManager._take_step": {
45
+ "total": 4.460123609000107,
46
+ "count": 632,
47
+ "self": 0.049056111998538654,
48
+ "children": {
49
+ "TorchPolicy.evaluate": {
50
+ "total": 4.411067497001568,
51
+ "count": 632,
52
+ "self": 0.8989476640019802,
53
+ "children": {
54
+ "TorchPolicy.sample_actions": {
55
+ "total": 3.5121198329995877,
56
+ "count": 632,
57
+ "self": 3.5121198329995877
58
+ }
59
+ }
60
+ }
61
+ }
62
+ },
63
+ "workers": {
64
+ "total": 0.008429725003566091,
65
+ "count": 631,
66
+ "self": 0.0,
67
+ "children": {
68
+ "worker_root": {
69
+ "total": 22.959840870997482,
70
+ "count": 631,
71
+ "is_parallel": true,
72
+ "self": 15.546209170997713,
73
+ "children": {
74
+ "run_training.setup": {
75
+ "total": 0.0,
76
+ "count": 0,
77
+ "is_parallel": true,
78
+ "self": 0.0,
79
+ "children": {
80
+ "steps_from_proto": {
81
+ "total": 0.006464282000024468,
82
+ "count": 1,
83
+ "is_parallel": true,
84
+ "self": 0.003847750999852906,
85
+ "children": {
86
+ "_process_rank_one_or_two_observation": {
87
+ "total": 0.0026165310001715625,
88
+ "count": 10,
89
+ "is_parallel": true,
90
+ "self": 0.0026165310001715625
91
+ }
92
+ }
93
+ },
94
+ "UnityEnvironment.step": {
95
+ "total": 0.03272560599998542,
96
+ "count": 1,
97
+ "is_parallel": true,
98
+ "self": 0.0005299789999071436,
99
+ "children": {
100
+ "UnityEnvironment._generate_step_input": {
101
+ "total": 0.0003979750000553395,
102
+ "count": 1,
103
+ "is_parallel": true,
104
+ "self": 0.0003979750000553395
105
+ },
106
+ "communicator.exchange": {
107
+ "total": 0.029979563999972925,
108
+ "count": 1,
109
+ "is_parallel": true,
110
+ "self": 0.029979563999972925
111
+ },
112
+ "steps_from_proto": {
113
+ "total": 0.001818088000050011,
114
+ "count": 1,
115
+ "is_parallel": true,
116
+ "self": 0.00042160399971180595,
117
+ "children": {
118
+ "_process_rank_one_or_two_observation": {
119
+ "total": 0.001396484000338205,
120
+ "count": 10,
121
+ "is_parallel": true,
122
+ "self": 0.001396484000338205
123
+ }
124
+ }
125
+ }
126
+ }
127
+ }
128
+ }
129
+ },
130
+ "UnityEnvironment.step": {
131
+ "total": 7.413631699999769,
132
+ "count": 630,
133
+ "is_parallel": true,
134
+ "self": 0.3222497699999849,
135
+ "children": {
136
+ "UnityEnvironment._generate_step_input": {
137
+ "total": 0.17315156899928752,
138
+ "count": 630,
139
+ "is_parallel": true,
140
+ "self": 0.17315156899928752
141
+ },
142
+ "communicator.exchange": {
143
+ "total": 5.880807032999996,
144
+ "count": 630,
145
+ "is_parallel": true,
146
+ "self": 5.880807032999996
147
+ },
148
+ "steps_from_proto": {
149
+ "total": 1.0374233280005,
150
+ "count": 630,
151
+ "is_parallel": true,
152
+ "self": 0.22832736900852524,
153
+ "children": {
154
+ "_process_rank_one_or_two_observation": {
155
+ "total": 0.8090959589919748,
156
+ "count": 6300,
157
+ "is_parallel": true,
158
+ "self": 0.8090959589919748
159
+ }
160
+ }
161
+ }
162
+ }
163
+ }
164
+ }
165
+ }
166
+ }
167
+ }
168
+ }
169
+ }
170
+ }
171
+ },
172
+ "trainer_threads": {
173
+ "total": 3.7505000022974855e-05,
174
+ "count": 1,
175
+ "self": 3.7505000022974855e-05,
176
+ "children": {
177
+ "thread_root": {
178
+ "total": 0.0,
179
+ "count": 0,
180
+ "is_parallel": true,
181
+ "self": 0.0,
182
+ "children": {
183
+ "trainer_advance": {
184
+ "total": 14.3192820480092,
185
+ "count": 16188,
186
+ "is_parallel": true,
187
+ "self": 0.35730666300935354,
188
+ "children": {
189
+ "process_trajectory": {
190
+ "total": 8.980585511999834,
191
+ "count": 16188,
192
+ "is_parallel": true,
193
+ "self": 8.980585511999834
194
+ },
195
+ "_update_policy": {
196
+ "total": 4.981389873000012,
197
+ "count": 3,
198
+ "is_parallel": true,
199
+ "self": 1.596088421000104,
200
+ "children": {
201
+ "TorchPPOOptimizer.update": {
202
+ "total": 3.385301451999908,
203
+ "count": 150,
204
+ "is_parallel": true,
205
+ "self": 3.385301451999908
206
+ }
207
+ }
208
+ }
209
+ }
210
+ }
211
+ }
212
+ }
213
+ }
214
+ },
215
+ "TrainerController._save_models": {
216
+ "total": 0.205213001000061,
217
+ "count": 1,
218
+ "self": 0.0010941920000959726,
219
+ "children": {
220
+ "RLTrainer._checkpoint": {
221
+ "total": 0.20411880899996504,
222
+ "count": 1,
223
+ "self": 0.20411880899996504
224
+ }
225
+ }
226
+ }
227
+ }
228
+ }
229
+ }
230
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "SnowballTarget": {
3
+ "checkpoints": [
4
+ {
5
+ "steps": 6512,
6
+ "file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-6512.onnx",
7
+ "reward": null,
8
+ "creation_time": 1676357704.5574577,
9
+ "auxillary_file_paths": [
10
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-6512.pt"
11
+ ]
12
+ }
13
+ ],
14
+ "final_checkpoint": {
15
+ "steps": 6512,
16
+ "file_path": "results/SnowballTarget1/SnowballTarget.onnx",
17
+ "reward": null,
18
+ "creation_time": 1676357704.5574577,
19
+ "auxillary_file_paths": [
20
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-6512.pt"
21
+ ]
22
+ }
23
+ },
24
+ "metadata": {
25
+ "stats_format_version": "0.3.0",
26
+ "mlagents_version": "0.29.0.dev0",
27
+ "torch_version": "1.8.1+cu102"
28
+ }
29
+ }