Espereverde commited on
Commit
2ebea33
·
verified ·
1 Parent(s): eeed5a6

First Push

Browse files
README.md CHANGED
@@ -1,14 +1,14 @@
1
  ---
2
  library_name: ml-agents
3
  tags:
4
- - Pyramids
5
  - deep-reinforcement-learning
6
  - reinforcement-learning
7
- - ML-Agents-Pyramids
8
  ---
9
 
10
- # **ppo** Agent playing **Pyramids**
11
- This is a trained model of a **ppo** agent playing **Pyramids**
12
  using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
13
 
14
  ## Usage (with ML-Agents)
 
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**
12
  using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
13
 
14
  ## Usage (with ML-Agents)
config.json CHANGED
@@ -1 +1 @@
1
- {"default_settings": null, "behaviors": {"Pyramids": {"trainer_type": "ppo", "hyperparameters": {"batch_size": 128, "buffer_size": 2048, "learning_rate": 0.0003, "beta": 0.01, "epsilon": 0.2, "lambd": 0.95, "num_epoch": 3, "shared_critic": false, "learning_rate_schedule": "linear", "beta_schedule": "linear", "epsilon_schedule": "linear"}, "checkpoint_interval": 500000, "network_settings": {"normalize": false, "hidden_units": 512, "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}}, "rnd": {"gamma": 0.99, "strength": 0.01, "network_settings": {"normalize": false, "hidden_units": 64, "num_layers": 3, "vis_encode_type": "simple", "memory": null, "goal_conditioning_type": "hyper", "deterministic": false}, "learning_rate": 0.0001, "encoding_size": null}}, "init_path": null, "keep_checkpoints": 5, "even_checkpoints": false, "max_steps": 1000000, "time_horizon": 128, "summary_freq": 30000, "threaded": false, "self_play": null, "behavioral_cloning": null}}, "env_settings": {"env_path": "./training-envs-executables/linux/Pyramids/Pyramids", "env_args": null, "base_port": 5005, "num_envs": 1, "num_areas": 1, "timeout_wait": 60, "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, "no_graphics_monitor": false}, "environment_parameters": null, "checkpoint_settings": {"run_id": "Pyramids Training", "initialize_from": null, "load_model": false, "resume": true, "force": false, "train_model": false, "inference": false, "results_dir": "results"}, "torch_settings": {"device": null}, "debug": false}
 
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": 200000, "time_horizon": 64, "summary_freq": 10000, "threaded": false, "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, "timeout_wait": 60, "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, "no_graphics_monitor": false}, "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 CHANGED
@@ -1,12 +1,12 @@
1
  default_settings: null
2
  behaviors:
3
- Pyramids:
4
  trainer_type: ppo
5
  hyperparameters:
6
  batch_size: 128
7
  buffer_size: 2048
8
  learning_rate: 0.0003
9
- beta: 0.01
10
  epsilon: 0.2
11
  lambd: 0.95
12
  num_epoch: 3
@@ -14,10 +14,10 @@ behaviors:
14
  learning_rate_schedule: linear
15
  beta_schedule: linear
16
  epsilon_schedule: linear
17
- checkpoint_interval: 500000
18
  network_settings:
19
  normalize: false
20
- hidden_units: 512
21
  num_layers: 2
22
  vis_encode_type: simple
23
  memory: null
@@ -35,30 +35,17 @@ behaviors:
35
  memory: null
36
  goal_conditioning_type: hyper
37
  deterministic: false
38
- rnd:
39
- gamma: 0.99
40
- strength: 0.01
41
- network_settings:
42
- normalize: false
43
- hidden_units: 64
44
- num_layers: 3
45
- vis_encode_type: simple
46
- memory: null
47
- goal_conditioning_type: hyper
48
- deterministic: false
49
- learning_rate: 0.0001
50
- encoding_size: null
51
  init_path: null
52
- keep_checkpoints: 5
53
  even_checkpoints: false
54
- max_steps: 1000000
55
- time_horizon: 128
56
- summary_freq: 30000
57
  threaded: false
58
  self_play: null
59
  behavioral_cloning: null
60
  env_settings:
61
- env_path: ./training-envs-executables/linux/Pyramids/Pyramids
62
  env_args: null
63
  base_port: 5005
64
  num_envs: 1
@@ -79,10 +66,10 @@ engine_settings:
79
  no_graphics_monitor: false
80
  environment_parameters: null
81
  checkpoint_settings:
82
- run_id: Pyramids Training
83
  initialize_from: null
84
  load_model: false
85
- resume: true
86
  force: false
87
  train_model: false
88
  inference: false
 
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
 
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
 
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: 200000
42
+ time_horizon: 64
43
+ summary_freq: 10000
44
  threaded: false
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
 
66
  no_graphics_monitor: false
67
  environment_parameters: null
68
  checkpoint_settings:
69
+ run_id: SnowballTarget1
70
  initialize_from: null
71
  load_model: false
72
+ resume: false
73
  force: false
74
  train_model: false
75
  inference: false
run_logs/Player-0.log CHANGED
@@ -1,11 +1,12 @@
1
- Mono path[0] = '/home/cogollo/RLCourse/Unit 5/ml-agents/training-envs-executables/linux/Pyramids/Pyramids_Data/Managed'
2
- Mono config path = '/home/cogollo/RLCourse/Unit 5/ml-agents/training-envs-executables/linux/Pyramids/Pyramids_Data/MonoBleedingEdge/etc'
3
- Found 1 interfaces on host : 0) 172.31.161.172
4
- Multi-casting "[IP] 172.31.161.172 [Port] 55038 [Flags] 2 [Guid] 629710086 [EditorId] 764847374 [Version] 1048832 [Id] LinuxPlayer(13,172.31.161.172) [Debug] 0 [PackageName] LinuxPlayer [ProjectName] UnityEnvironment" to [225.0.0.222:54997]...
5
  Preloaded 'lib_burst_generated.so'
6
  Preloaded 'libgrpc_csharp_ext.x64.so'
7
- Initialize engine version: 2021.3.5f1 (40eb3a945986)
8
- [Subsystems] Discovering subsystems at path /home/cogollo/RLCourse/Unit 5/ml-agents/training-envs-executables/linux/Pyramids/Pyramids_Data/UnitySubsystems
 
 
 
9
  Forcing GfxDevice: Null
10
  GfxDevice: creating device client; threaded=0; jobified=0
11
  NullGfxDevice:
@@ -13,31 +14,10 @@ NullGfxDevice:
13
  Renderer: Null Device
14
  Vendor: Unity Technologies
15
  Begin MonoManager ReloadAssembly
16
- - Completed reload, in 0.078 seconds
17
  ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
18
  ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
19
  ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
20
- WARNING: Shader Unsupported: 'Autodesk Interactive' - All subshaders removed
21
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
22
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
23
- ERROR: Shader Autodesk Interactive shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
24
- WARNING: Shader Unsupported: 'Autodesk Interactive' - All subshaders removed
25
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
26
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
27
- WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - All subshaders removed
28
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
29
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
30
- ERROR: Shader Legacy Shaders/Diffuse shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
31
- WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - All subshaders removed
32
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
33
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
34
- WARNING: Shader Unsupported: 'ML-Agents/GridPattern' - All subshaders removed
35
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
36
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
37
- ERROR: Shader ML-Agents/GridPattern shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
38
- WARNING: Shader Unsupported: 'ML-Agents/GridPattern' - 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
  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?
@@ -45,105 +25,95 @@ ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/f
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.634200 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 3 worker threads for Enlighten.
52
- PlayerConnection::CleanupMemory Statistics:
53
  [ALLOC_TEMP_TLS] TLS Allocator
54
  StackAllocators :
55
  [ALLOC_TEMP_MAIN]
56
- Peak usage frame count: [16.0 KB-32.0 KB]: 2949 frames, [32.0 KB-64.0 KB]: 12189 frames, [64.0 KB-128.0 KB]: 3329 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_Background Job.Worker 8]
62
  Initial Block Size 32.0 KB
63
  Current Block Size 32.0 KB
64
  Peak Allocated Bytes 0 B
65
  Overflow Count 0
66
- [ALLOC_TEMP_Background Job.Worker 10]
67
  Initial Block Size 32.0 KB
68
  Current Block Size 32.0 KB
69
  Peak Allocated Bytes 0 B
70
  Overflow Count 0
71
- [ALLOC_TEMP_Job.Worker 4]
72
  Initial Block Size 256.0 KB
73
  Current Block Size 256.0 KB
74
- Peak Allocated Bytes 0 B
75
  Overflow Count 0
76
- [ALLOC_TEMP_Background Job.Worker 6]
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_Background Job.Worker 1]
82
  Initial Block Size 32.0 KB
83
  Current Block Size 32.0 KB
84
  Peak Allocated Bytes 0 B
85
  Overflow Count 0
86
- [ALLOC_TEMP_Background Job.Worker 11]
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 3]
 
 
 
 
 
 
 
 
 
 
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_BatchDeleteObjects]
97
- Initial Block Size 64.0 KB
98
- Current Block Size 64.0 KB
99
- Peak Allocated Bytes 0 B
100
- Overflow Count 0
101
- [ALLOC_TEMP_AUDIO_FMOD stream thread]
102
  Initial Block Size 64.0 KB
103
  Current Block Size 64.0 KB
104
  Peak Allocated Bytes 0 B
105
  Overflow Count 0
106
- [ALLOC_TEMP_Background Job.Worker 2]
107
  Initial Block Size 32.0 KB
108
  Current Block Size 32.0 KB
109
  Peak Allocated Bytes 0 B
110
  Overflow Count 0
111
- [ALLOC_TEMP_Background Job.Worker 7]
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 15]
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_Job.Worker 1]
122
- Initial Block Size 256.0 KB
123
- Current Block Size 256.0 KB
124
- Peak Allocated Bytes 0.8 KB
125
- Overflow Count 0
126
- [ALLOC_TEMP_Loading.PreloadManager]
127
- Initial Block Size 256.0 KB
128
- Current Block Size 320.0 KB
129
- Peak Allocated Bytes 251.6 KB
130
- Overflow Count 4
131
- [ALLOC_TEMP_AUDIO_FMOD PulseAudio Mixer]
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_Profiler.Dispatcher]
137
- Initial Block Size 64.0 KB
138
- Current Block Size 64.0 KB
139
- Peak Allocated Bytes 0 B
140
- Overflow Count 0
141
- [ALLOC_TEMP_Job.Worker 3]
142
- Initial Block Size 256.0 KB
143
- Current Block Size 256.0 KB
144
- Peak Allocated Bytes 0 B
145
- Overflow Count 0
146
- [ALLOC_TEMP_Background Job.Worker 12]
147
  Initial Block Size 32.0 KB
148
  Current Block Size 32.0 KB
149
  Peak Allocated Bytes 0 B
@@ -163,69 +133,58 @@ PlayerConnection::CleanupMemory Statistics:
163
  Current Block Size 32.0 KB
164
  Peak Allocated Bytes 0 B
165
  Overflow Count 0
 
 
 
 
 
166
  [ALLOC_TEMP_Job.Worker 2]
167
  Initial Block Size 256.0 KB
168
  Current Block Size 256.0 KB
169
- Peak Allocated Bytes 0 B
170
  Overflow Count 0
171
- [ALLOC_TEMP_Background Job.Worker 0]
172
  Initial Block Size 32.0 KB
173
  Current Block Size 32.0 KB
174
  Peak Allocated Bytes 0 B
175
  Overflow Count 0
176
- [ALLOC_TEMP_Background Job.Worker 4]
177
  Initial Block Size 32.0 KB
178
  Current Block Size 32.0 KB
179
  Peak Allocated Bytes 0 B
180
  Overflow Count 0
181
- [ALLOC_TEMP_Job.Worker 0]
182
- Initial Block Size 256.0 KB
183
- Current Block Size 256.0 KB
184
- Peak Allocated Bytes 0 B
185
- Overflow Count 0
186
- [ALLOC_TEMP_Background Job.Worker 9]
187
  Initial Block Size 32.0 KB
188
  Current Block Size 32.0 KB
189
  Peak Allocated Bytes 0 B
190
  Overflow Count 0
191
- [ALLOC_TEMP_Background Job.Worker 14]
192
  Initial Block Size 32.0 KB
193
  Current Block Size 32.0 KB
194
  Peak Allocated Bytes 0 B
195
  Overflow Count 0
196
- [ALLOC_TEMP_EnlightenWorker] x 3
197
  Initial Block Size 64.0 KB
198
  Current Block Size 64.0 KB
199
  Peak Allocated Bytes 0 B
200
  Overflow Count 0
201
- [ALLOC_TEMP_Loading.AsyncRead]
202
- Initial Block Size 64.0 KB
203
- Current Block Size 64.0 KB
204
- Peak Allocated Bytes 128 B
205
- Overflow Count 0
206
- [ALLOC_MEMORYPROFILER]
207
- Peak usage frame count: [0.5 MB-1.0 MB]: 299 frames, [1.0 MB-2.0 MB]: 18169 frames
208
- Requested Block Size 1.0 MB
209
- Peak Block count 2
210
- Peak Allocated memory 1.6 MB
211
- Peak Large allocation bytes 0 B
212
  [ALLOC_DEFAULT] Dual Thread Allocator
213
- Peak main deferred allocation count 12968
214
  [ALLOC_BUCKET]
215
  Large Block size 4.0 MB
216
  Used Block count 1
217
- Peak Allocated bytes 1.7 MB
218
  [ALLOC_DEFAULT_MAIN]
219
- Peak usage frame count: [8.0 MB-16.0 MB]: 1 frames, [16.0 MB-32.0 MB]: 18467 frames
220
  Requested Block Size 16.0 MB
221
- Peak Block count 3
222
- Peak Allocated memory 30.9 MB
223
  Peak Large allocation bytes 0 B
224
  [ALLOC_DEFAULT_THREAD]
225
- Peak usage frame count: [16.0 MB-32.0 MB]: 18468 frames
226
  Requested Block Size 16.0 MB
227
  Peak Block count 1
228
- Peak Allocated memory 25.0 MB
229
  Peak Large allocation bytes 16.0 MB
230
  [ALLOC_TEMP_JOB_1_FRAME]
231
  Initial Block Size 2.0 MB
@@ -252,63 +211,52 @@ PlayerConnection::CleanupMemory Statistics:
252
  [ALLOC_BUCKET]
253
  Large Block size 4.0 MB
254
  Used Block count 1
255
- Peak Allocated bytes 1.7 MB
256
  [ALLOC_GFX_MAIN]
257
- Peak usage frame count: [32.0 KB-64.0 KB]: 18467 frames, [64.0 KB-128.0 KB]: 1 frames
258
  Requested Block Size 16.0 MB
259
  Peak Block count 1
260
- Peak Allocated memory 67.0 KB
261
  Peak Large allocation bytes 0 B
262
  [ALLOC_GFX_THREAD]
263
- Peak usage frame count: [64.0 KB-128.0 KB]: 18468 frames
264
  Requested Block Size 16.0 MB
265
  Peak Block count 1
266
- Peak Allocated memory 67.7 KB
267
  Peak Large allocation bytes 0 B
268
  [ALLOC_CACHEOBJECTS] Dual Thread Allocator
269
- Peak main deferred allocation count 1
270
  [ALLOC_BUCKET]
271
  Large Block size 4.0 MB
272
  Used Block count 1
273
- Peak Allocated bytes 1.7 MB
274
  [ALLOC_CACHEOBJECTS_MAIN]
275
- Peak usage frame count: [0.5 MB-1.0 MB]: 299 frames, [1.0 MB-2.0 MB]: 18169 frames
276
  Requested Block Size 4.0 MB
277
  Peak Block count 1
278
- Peak Allocated memory 1.4 MB
279
  Peak Large allocation bytes 0 B
280
  [ALLOC_CACHEOBJECTS_THREAD]
281
- Peak usage frame count: [1.0 MB-2.0 MB]: 18467 frames, [4.0 MB-8.0 MB]: 1 frames
282
  Requested Block Size 4.0 MB
283
- Peak Block count 2
284
- Peak Allocated memory 4.7 MB
285
  Peak Large allocation bytes 0 B
286
  [ALLOC_TYPETREE] Dual Thread Allocator
287
  Peak main deferred allocation count 0
288
  [ALLOC_BUCKET]
289
  Large Block size 4.0 MB
290
  Used Block count 1
291
- Peak Allocated bytes 1.7 MB
292
  [ALLOC_TYPETREE_MAIN]
293
- Peak usage frame count: [0-1.0 KB]: 18468 frames
294
  Requested Block Size 2.0 MB
295
  Peak Block count 1
296
  Peak Allocated memory 1.0 KB
297
  Peak Large allocation bytes 0 B
298
  [ALLOC_TYPETREE_THREAD]
299
- Peak usage frame count: [1.0 KB-2.0 KB]: 18468 frames
300
  Requested Block Size 2.0 MB
301
  Peak Block count 1
302
- Peak Allocated memory 1.9 KB
303
  Peak Large allocation bytes 0 B
304
- [ALLOC_PROFILER]
305
- Peak usage frame count: [16.0 KB-32.0 KB]: 18468 frames
306
- Requested Block Size 16.0 MB
307
- Peak Block count 1
308
- Peak Allocated memory 30.7 KB
309
- Peak Large allocation bytes 0 B
310
- [ALLOC_PROFILER_BUCKET]
311
- Large Block size 4.0 MB
312
- Used Block count 1
313
- Peak Allocated bytes 396 B
314
- ##utp:{"type":"MemoryLeaks","version":2,"phase":"Immediate","time":1751408842735,"processId":30722,"allocatedMemory":2034839,"memoryLabels":[{"Default":9033},{"Permanent":1264},{"NewDelete":73418},{"Thread":34572},{"Manager":12847},{"VertexData":12},{"Geometry":280},{"Texture":16},{"Shader":69173},{"Material":24},{"GfxDevice":35248},{"Animation":304},{"Audio":3976},{"Physics":288},{"Serialization":216},{"Input":9176},{"JobScheduler":200},{"Mono":40},{"ScriptingNativeRuntime":216},{"BaseObject":1609212},{"Resource":592},{"Renderer":1936},{"Transform":48},{"File":800},{"WebCam":24},{"Culling":40},{"Terrain":953},{"Wind":24},{"String":3548},{"DynamicArray":30868},{"HashMap":7680},{"Utility":2992},{"PoolAlloc":1160},{"TypeTree":1792},{"ScriptManager":80},{"RuntimeInitializeOnLoadManager":72},{"SpriteAtlas":112},{"GI":3272},{"Unet":16},{"Director":7760},{"WebRequest":720},{"VR":45473},{"SceneManager":424},{"Video":32},{"LazyScriptCache":32},{"NativeArray":384},{"Camera":25},{"Secure":1},{"SerializationCache":624},{"APIUpdating":5872},{"Subsystems":384},{"VirtualTexturing":57552},{"AssetReference":32}]}
 
1
+ Mono path[0] = '/home/cogollo/RLCourse/Unit 5/ml-agents/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/Managed'
2
+ Mono config path = '/home/cogollo/RLCourse/Unit 5/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: /home/cogollo/.config/unity3d/Hugging Face
6
+ PlayerPrefs - Creating folder: /home/cogollo/.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 /home/cogollo/RLCourse/Unit 5/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:
 
14
  Renderer: Null Device
15
  Vendor: Unity Technologies
16
  Begin MonoManager ReloadAssembly
17
+ - Completed reload, in 0.172 seconds
18
  ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
19
  ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
20
  ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  WARNING: Shader Unsupported: 'Standard' - All subshaders removed
22
  WARNING: Shader Did you use #pragma only_renderers and omit this platform?
23
  WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
 
25
  WARNING: Shader Unsupported: 'Standard' - All subshaders removed
26
  WARNING: Shader Did you use #pragma only_renderers and omit this platform?
27
  WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
28
+ UnloadTime: 1.238800 ms
29
  ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
30
  requesting resize 84 x 84
31
  Setting up 3 worker threads for Enlighten.
32
+ Memory Statistics:
33
  [ALLOC_TEMP_TLS] TLS Allocator
34
  StackAllocators :
35
  [ALLOC_TEMP_MAIN]
36
+ Peak usage frame count: [8.0 KB-16.0 KB]: 5367 frames, [16.0 KB-32.0 KB]: 90 frames, [2.0 MB-4.0 MB]: 1 frames
37
  Initial Block Size 4.0 MB
38
  Current Block Size 4.0 MB
39
  Peak Allocated Bytes 2.0 MB
40
  Overflow Count 0
41
+ [ALLOC_TEMP_Loading.AsyncRead]
42
+ Initial Block Size 64.0 KB
43
+ Current Block Size 64.0 KB
44
+ Peak Allocated Bytes 240 B
45
+ Overflow Count 0
46
+ [ALLOC_TEMP_Loading.PreloadManager]
47
+ Initial Block Size 256.0 KB
48
+ Current Block Size 304.0 KB
49
+ Peak Allocated Bytes 228.9 KB
50
+ Overflow Count 4
51
  [ALLOC_TEMP_Background Job.Worker 8]
52
  Initial Block Size 32.0 KB
53
  Current Block Size 32.0 KB
54
  Peak Allocated Bytes 0 B
55
  Overflow Count 0
56
+ [ALLOC_TEMP_Background Job.Worker 9]
57
  Initial Block Size 32.0 KB
58
  Current Block Size 32.0 KB
59
  Peak Allocated Bytes 0 B
60
  Overflow Count 0
61
+ [ALLOC_TEMP_Job.Worker 0]
62
  Initial Block Size 256.0 KB
63
  Current Block Size 256.0 KB
64
+ Peak Allocated Bytes 3.6 KB
65
  Overflow Count 0
66
+ [ALLOC_TEMP_Background Job.Worker 10]
67
  Initial Block Size 32.0 KB
68
  Current Block Size 32.0 KB
69
  Peak Allocated Bytes 0 B
70
  Overflow Count 0
71
+ [ALLOC_TEMP_Background Job.Worker 14]
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 6]
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 4]
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_Job.Worker 3]
87
+ Initial Block Size 256.0 KB
88
+ Current Block Size 256.0 KB
89
+ Peak Allocated Bytes 3.6 KB
90
+ Overflow Count 0
91
+ [ALLOC_TEMP_Background Job.Worker 12]
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_EnlightenWorker] x 3
 
 
 
 
 
97
  Initial Block Size 64.0 KB
98
  Current Block Size 64.0 KB
99
  Peak Allocated Bytes 0 B
100
  Overflow Count 0
101
+ [ALLOC_TEMP_Background Job.Worker 15]
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_Background Job.Worker 1]
107
  Initial Block Size 32.0 KB
108
  Current Block Size 32.0 KB
109
  Peak Allocated Bytes 0 B
110
  Overflow Count 0
111
+ [ALLOC_TEMP_Background Job.Worker 2]
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 7]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  Initial Block Size 32.0 KB
118
  Current Block Size 32.0 KB
119
  Peak Allocated Bytes 0 B
 
133
  Current Block Size 32.0 KB
134
  Peak Allocated Bytes 0 B
135
  Overflow Count 0
136
+ [ALLOC_TEMP_Job.Worker 1]
137
+ Initial Block Size 256.0 KB
138
+ Current Block Size 256.0 KB
139
+ Peak Allocated Bytes 3.6 KB
140
+ Overflow Count 0
141
  [ALLOC_TEMP_Job.Worker 2]
142
  Initial Block Size 256.0 KB
143
  Current Block Size 256.0 KB
144
+ Peak Allocated Bytes 3.6 KB
145
  Overflow Count 0
146
+ [ALLOC_TEMP_Background Job.Worker 3]
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 11]
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 37
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]: 5458 frames
179
  Requested Block Size 16.0 MB
180
+ Peak Block count 1
181
+ Peak Allocated memory 6.8 MB
182
  Peak Large allocation bytes 0 B
183
  [ALLOC_DEFAULT_THREAD]
184
+ Peak usage frame count: [16.0 MB-32.0 MB]: 5458 frames
185
  Requested Block Size 16.0 MB
186
  Peak Block count 1
187
+ Peak Allocated memory 17.6 MB
188
  Peak Large allocation bytes 16.0 MB
189
  [ALLOC_TEMP_JOB_1_FRAME]
190
  Initial Block Size 2.0 MB
 
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]: 4978 frames, [64.0 KB-128.0 KB]: 480 frames
217
  Requested Block Size 16.0 MB
218
  Peak Block count 1
219
+ Peak Allocated memory 66.4 KB
220
  Peak Large allocation bytes 0 B
221
  [ALLOC_GFX_THREAD]
222
+ Peak usage frame count: [32.0 KB-64.0 KB]: 5458 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]: 5458 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]: 5457 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]: 5458 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]: 5458 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 CHANGED
@@ -1,250 +1,214 @@
1
  {
2
  "name": "root",
3
  "gauges": {
4
- "Pyramids.Policy.Entropy.mean": {
5
- "value": 0.43157386779785156,
6
- "min": 0.43157386779785156,
7
- "max": 1.1835137605667114,
8
- "count": 33
9
  },
10
- "Pyramids.Policy.Entropy.sum": {
11
- "value": 12954.12109375,
12
- "min": 12954.12109375,
13
- "max": 33916.4375,
14
- "count": 33
15
  },
16
- "Pyramids.Step.mean": {
17
- "value": 989948.0,
18
- "min": 29952.0,
19
- "max": 989948.0,
20
- "count": 33
21
  },
22
- "Pyramids.Step.sum": {
23
- "value": 989948.0,
24
- "min": 29952.0,
25
- "max": 989948.0,
26
- "count": 33
27
  },
28
- "Pyramids.Policy.ExtrinsicValueEstimate.mean": {
29
- "value": 0.6525560021400452,
30
- "min": -0.19506368041038513,
31
- "max": 0.6525560021400452,
32
- "count": 33
33
  },
34
- "Pyramids.Policy.ExtrinsicValueEstimate.sum": {
35
- "value": 185.32589721679688,
36
- "min": -26.498668670654297,
37
- "max": 185.32589721679688,
38
- "count": 33
39
  },
40
- "Pyramids.Policy.RndValueEstimate.mean": {
41
- "value": -0.018126411363482475,
42
- "min": -0.032225046306848526,
43
- "max": 0.47743427753448486,
44
- "count": 33
45
  },
46
- "Pyramids.Policy.RndValueEstimate.sum": {
47
- "value": -5.1479010581970215,
48
- "min": -8.86188793182373,
49
- "max": 86.08393859863281,
50
- "count": 33
51
  },
52
- "Pyramids.Losses.PolicyLoss.mean": {
53
- "value": 0.07054435086964188,
54
- "min": 0.06523563337072523,
55
- "max": 0.0744501472680565,
56
- "count": 33
57
  },
58
- "Pyramids.Losses.PolicyLoss.sum": {
59
- "value": 0.9876209121749863,
60
- "min": 0.1957069001121757,
61
- "max": 1.0574157290102448,
62
- "count": 33
63
  },
64
- "Pyramids.Losses.ValueLoss.mean": {
65
- "value": 0.015353312257278501,
66
- "min": 0.0007061740459281193,
67
- "max": 0.01610820238004505,
68
- "count": 33
69
  },
70
- "Pyramids.Losses.ValueLoss.sum": {
71
- "value": 0.21494637160189903,
72
- "min": 0.008058103971658662,
73
- "max": 0.2255148333206307,
74
- "count": 33
75
  },
76
- "Pyramids.Policy.LearningRate.mean": {
77
- "value": 7.751711701842858e-06,
78
- "min": 7.751711701842858e-06,
79
- "max": 0.00029274240241920004,
80
- "count": 33
81
  },
82
- "Pyramids.Policy.LearningRate.sum": {
83
- "value": 0.00010852396382580002,
84
- "min": 0.00010852396382580002,
85
- "max": 0.0036326677891107993,
86
- "count": 33
87
  },
88
- "Pyramids.Policy.Epsilon.mean": {
89
- "value": 0.10258387142857142,
90
- "min": 0.10258387142857142,
91
- "max": 0.19758080000000003,
92
- "count": 33
93
  },
94
- "Pyramids.Policy.Epsilon.sum": {
95
- "value": 1.4361742,
96
- "min": 0.5927424000000001,
97
- "max": 2.6108892000000004,
98
- "count": 33
99
  },
100
- "Pyramids.Policy.Beta.mean": {
101
- "value": 0.00026812875571428576,
102
- "min": 0.00026812875571428576,
103
- "max": 0.00975832192,
104
- "count": 33
105
  },
106
- "Pyramids.Policy.Beta.sum": {
107
- "value": 0.0037538025800000004,
108
- "min": 0.0037538025800000004,
109
- "max": 0.12110783107999999,
110
- "count": 33
111
  },
112
- "Pyramids.Losses.RNDLoss.mean": {
113
- "value": 0.01063509937375784,
114
- "min": 0.010519095696508884,
115
- "max": 0.2793361246585846,
116
- "count": 33
117
  },
118
- "Pyramids.Losses.RNDLoss.sum": {
119
- "value": 0.1488913893699646,
120
- "min": 0.14726734161376953,
121
- "max": 1.2707055807113647,
122
- "count": 33
123
  },
124
- "Pyramids.IsTraining.mean": {
 
 
 
 
 
 
 
 
 
 
 
 
125
  "value": 1.0,
126
  "min": 1.0,
127
  "max": 1.0,
128
- "count": 33
129
  },
130
- "Pyramids.IsTraining.sum": {
131
  "value": 1.0,
132
  "min": 1.0,
133
  "max": 1.0,
134
- "count": 33
135
- },
136
- "Pyramids.Environment.EpisodeLength.mean": {
137
- "value": 299.45631067961165,
138
- "min": 299.45631067961165,
139
- "max": 999.0,
140
- "count": 32
141
- },
142
- "Pyramids.Environment.EpisodeLength.sum": {
143
- "value": 30844.0,
144
- "min": 24318.0,
145
- "max": 33372.0,
146
- "count": 32
147
- },
148
- "Pyramids.Environment.CumulativeReward.mean": {
149
- "value": 1.6798764544666982,
150
- "min": -1.0000000521540642,
151
- "max": 1.6798764544666982,
152
- "count": 32
153
- },
154
- "Pyramids.Environment.CumulativeReward.sum": {
155
- "value": 171.34739835560322,
156
- "min": -32.000001668930054,
157
- "max": 171.34739835560322,
158
- "count": 32
159
- },
160
- "Pyramids.Policy.ExtrinsicReward.mean": {
161
- "value": 1.6798764544666982,
162
- "min": -1.0000000521540642,
163
- "max": 1.6798764544666982,
164
- "count": 32
165
- },
166
- "Pyramids.Policy.ExtrinsicReward.sum": {
167
- "value": 171.34739835560322,
168
- "min": -32.000001668930054,
169
- "max": 171.34739835560322,
170
- "count": 32
171
- },
172
- "Pyramids.Policy.RndReward.mean": {
173
- "value": 0.03312544703201674,
174
- "min": 0.03312544703201674,
175
- "max": 2.579658311791718,
176
- "count": 32
177
- },
178
- "Pyramids.Policy.RndReward.sum": {
179
- "value": 3.3787955972657073,
180
- "min": 3.065735498068534,
181
- "max": 82.54906597733498,
182
- "count": 32
183
  }
184
  },
185
  "metadata": {
186
  "timer_format_version": "0.1.0",
187
- "start_time_seconds": "1751406869",
188
  "python_version": "3.10.18 (main, Jun 4 2025, 08:56:00) [GCC 13.3.0]",
189
- "command_line_arguments": "/home/cogollo/mlagents_env/bin/mlagents-learn ./config/ppo/PyramidsRND.yaml --env=./training-envs-executables/linux/Pyramids/Pyramids --run-id=Pyramids Training --no-graphics --resume",
190
  "mlagents_version": "1.2.0.dev0",
191
  "mlagents_envs_version": "1.2.0.dev0",
192
  "communication_protocol_version": "1.5.0",
193
  "pytorch_version": "2.7.1+cu126",
194
  "numpy_version": "1.23.5",
195
- "end_time_seconds": "1751408842"
196
  },
197
- "total": 1856.999686985997,
198
  "count": 1,
199
- "self": 0.31932419499207754,
200
  "children": {
201
  "run_training.setup": {
202
- "total": 0.021418308999272995,
203
  "count": 1,
204
- "self": 0.021418308999272995
205
  },
206
  "TrainerController.start_learning": {
207
- "total": 1856.6589444820056,
208
  "count": 1,
209
- "self": 1.2493460242112633,
210
  "children": {
211
  "TrainerController._reset_env": {
212
- "total": 2.5361245889944257,
213
  "count": 1,
214
- "self": 2.5361245889944257
215
  },
216
  "TrainerController.advance": {
217
- "total": 1852.7811810717976,
218
- "count": 63022,
219
- "self": 1.1899232625946752,
220
  "children": {
221
  "env_step": {
222
- "total": 1042.043702635463,
223
- "count": 63022,
224
- "self": 779.9959552165164,
225
  "children": {
226
  "SubprocessEnvManager._take_step": {
227
- "total": 261.22081486089155,
228
- "count": 63022,
229
- "self": 4.396588633302599,
230
  "children": {
231
  "TorchPolicy.evaluate": {
232
- "total": 256.82422622758895,
233
- "count": 61558,
234
- "self": 256.82422622758895
235
  }
236
  }
237
  },
238
  "workers": {
239
- "total": 0.8269325580549776,
240
- "count": 63022,
241
  "self": 0.0,
242
  "children": {
243
  "worker_root": {
244
- "total": 1854.0195414528062,
245
- "count": 63022,
246
  "is_parallel": true,
247
- "self": 1156.042825190416,
248
  "children": {
249
  "run_training.setup": {
250
  "total": 0.0,
@@ -253,48 +217,48 @@
253
  "self": 0.0,
254
  "children": {
255
  "steps_from_proto": {
256
- "total": 0.0018153179989894852,
257
  "count": 1,
258
  "is_parallel": true,
259
- "self": 0.0007114139953046106,
260
  "children": {
261
  "_process_rank_one_or_two_observation": {
262
- "total": 0.0011039040036848746,
263
- "count": 8,
264
  "is_parallel": true,
265
- "self": 0.0011039040036848746
266
  }
267
  }
268
  },
269
  "UnityEnvironment.step": {
270
- "total": 0.027480443997774273,
271
  "count": 1,
272
  "is_parallel": true,
273
- "self": 0.00023723299818811938,
274
  "children": {
275
  "UnityEnvironment._generate_step_input": {
276
- "total": 0.00018620800256030634,
277
  "count": 1,
278
  "is_parallel": true,
279
- "self": 0.00018620800256030634
280
  },
281
  "communicator.exchange": {
282
- "total": 0.026354200999776367,
283
  "count": 1,
284
  "is_parallel": true,
285
- "self": 0.026354200999776367
286
  },
287
  "steps_from_proto": {
288
- "total": 0.0007028019972494803,
289
  "count": 1,
290
  "is_parallel": true,
291
- "self": 0.00017835199105320498,
292
  "children": {
293
  "_process_rank_one_or_two_observation": {
294
- "total": 0.0005244500061962754,
295
- "count": 8,
296
  "is_parallel": true,
297
- "self": 0.0005244500061962754
298
  }
299
  }
300
  }
@@ -303,34 +267,34 @@
303
  }
304
  },
305
  "UnityEnvironment.step": {
306
- "total": 697.9767162623903,
307
- "count": 63021,
308
  "is_parallel": true,
309
- "self": 13.67834424200555,
310
  "children": {
311
  "UnityEnvironment._generate_step_input": {
312
- "total": 10.789437118080969,
313
- "count": 63021,
314
  "is_parallel": true,
315
- "self": 10.789437118080969
316
  },
317
  "communicator.exchange": {
318
- "total": 634.0428370539157,
319
- "count": 63021,
320
  "is_parallel": true,
321
- "self": 634.0428370539157
322
  },
323
  "steps_from_proto": {
324
- "total": 39.46609784838802,
325
- "count": 63021,
326
  "is_parallel": true,
327
- "self": 9.871907055916381,
328
  "children": {
329
  "_process_rank_one_or_two_observation": {
330
- "total": 29.594190792471636,
331
- "count": 504168,
332
  "is_parallel": true,
333
- "self": 29.594190792471636
334
  }
335
  }
336
  }
@@ -343,31 +307,31 @@
343
  }
344
  },
345
  "trainer_advance": {
346
- "total": 809.54755517374,
347
- "count": 63022,
348
- "self": 2.3640318971447414,
349
  "children": {
350
  "process_trajectory": {
351
- "total": 127.37807295958919,
352
- "count": 63022,
353
- "self": 127.17165255959117,
354
  "children": {
355
  "RLTrainer._checkpoint": {
356
- "total": 0.20642039999802364,
357
- "count": 2,
358
- "self": 0.20642039999802364
359
  }
360
  }
361
  },
362
  "_update_policy": {
363
- "total": 679.805450317006,
364
- "count": 445,
365
- "self": 277.75940190442634,
366
  "children": {
367
  "TorchPPOOptimizer.update": {
368
- "total": 402.0460484125797,
369
- "count": 22410,
370
- "self": 402.0460484125797
371
  }
372
  }
373
  }
@@ -376,19 +340,19 @@
376
  }
377
  },
378
  "trainer_threads": {
379
- "total": 6.440022843889892e-07,
380
  "count": 1,
381
- "self": 6.440022843889892e-07
382
  },
383
  "TrainerController._save_models": {
384
- "total": 0.0922921530000167,
385
  "count": 1,
386
- "self": 0.0020129369950154796,
387
  "children": {
388
  "RLTrainer._checkpoint": {
389
- "total": 0.09027921600500122,
390
  "count": 1,
391
- "self": 0.09027921600500122
392
  }
393
  }
394
  }
 
1
  {
2
  "name": "root",
3
  "gauges": {
4
+ "SnowballTarget.Policy.Entropy.mean": {
5
+ "value": 0.8752543926239014,
6
+ "min": 0.8752543926239014,
7
+ "max": 2.870757818222046,
8
+ "count": 20
9
  },
10
+ "SnowballTarget.Policy.Entropy.sum": {
11
+ "value": 8318.41796875,
12
+ "min": 8318.41796875,
13
+ "max": 29304.6953125,
14
+ "count": 20
15
  },
16
+ "SnowballTarget.Step.mean": {
17
+ "value": 199984.0,
18
+ "min": 9952.0,
19
+ "max": 199984.0,
20
+ "count": 20
21
  },
22
+ "SnowballTarget.Step.sum": {
23
+ "value": 199984.0,
24
+ "min": 9952.0,
25
+ "max": 199984.0,
26
+ "count": 20
27
  },
28
+ "SnowballTarget.Policy.ExtrinsicValueEstimate.mean": {
29
+ "value": 12.726642608642578,
30
+ "min": 0.49879372119903564,
31
+ "max": 12.726642608642578,
32
+ "count": 20
33
  },
34
+ "SnowballTarget.Policy.ExtrinsicValueEstimate.sum": {
35
+ "value": 2481.6953125,
36
+ "min": 96.76598358154297,
37
+ "max": 2577.39453125,
38
+ "count": 20
39
  },
40
+ "SnowballTarget.Losses.PolicyLoss.mean": {
41
+ "value": 0.06730769544596757,
42
+ "min": 0.061559674127470224,
43
+ "max": 0.07374301972278559,
44
+ "count": 20
45
  },
46
+ "SnowballTarget.Losses.PolicyLoss.sum": {
47
+ "value": 0.2692307817838703,
48
+ "min": 0.2462386965098809,
49
+ "max": 0.3687150986139279,
50
+ "count": 20
51
  },
52
+ "SnowballTarget.Losses.ValueLoss.mean": {
53
+ "value": 0.18663179523804607,
54
+ "min": 0.12328974780964427,
55
+ "max": 0.3032238807748346,
56
+ "count": 20
57
  },
58
+ "SnowballTarget.Losses.ValueLoss.sum": {
59
+ "value": 0.7465271809521843,
60
+ "min": 0.4931589912385771,
61
+ "max": 1.516119403874173,
62
+ "count": 20
63
  },
64
+ "SnowballTarget.Policy.LearningRate.mean": {
65
+ "value": 8.082097306000005e-06,
66
+ "min": 8.082097306000005e-06,
67
+ "max": 0.000291882002706,
68
+ "count": 20
69
  },
70
+ "SnowballTarget.Policy.LearningRate.sum": {
71
+ "value": 3.232838922400002e-05,
72
+ "min": 3.232838922400002e-05,
73
+ "max": 0.00138516003828,
74
+ "count": 20
75
  },
76
+ "SnowballTarget.Policy.Epsilon.mean": {
77
+ "value": 0.10269400000000001,
78
+ "min": 0.10269400000000001,
79
+ "max": 0.19729400000000002,
80
+ "count": 20
81
  },
82
+ "SnowballTarget.Policy.Epsilon.sum": {
83
+ "value": 0.41077600000000003,
84
+ "min": 0.41077600000000003,
85
+ "max": 0.96172,
86
+ "count": 20
87
  },
88
+ "SnowballTarget.Policy.Beta.mean": {
89
+ "value": 0.0001444306000000001,
90
+ "min": 0.0001444306000000001,
91
+ "max": 0.0048649706,
92
+ "count": 20
93
  },
94
+ "SnowballTarget.Policy.Beta.sum": {
95
+ "value": 0.0005777224000000004,
96
+ "min": 0.0005777224000000004,
97
+ "max": 0.023089828,
98
+ "count": 20
99
  },
100
+ "SnowballTarget.Environment.EpisodeLength.mean": {
101
+ "value": 199.0,
102
+ "min": 199.0,
103
+ "max": 199.0,
104
+ "count": 20
105
  },
106
+ "SnowballTarget.Environment.EpisodeLength.sum": {
107
+ "value": 8756.0,
108
+ "min": 8756.0,
109
+ "max": 10945.0,
110
+ "count": 20
111
  },
112
+ "SnowballTarget.Environment.CumulativeReward.mean": {
113
+ "value": 25.727272727272727,
114
+ "min": 3.7954545454545454,
115
+ "max": 25.727272727272727,
116
+ "count": 20
117
  },
118
+ "SnowballTarget.Environment.CumulativeReward.sum": {
119
+ "value": 1132.0,
120
+ "min": 167.0,
121
+ "max": 1371.0,
122
+ "count": 20
123
  },
124
+ "SnowballTarget.Policy.ExtrinsicReward.mean": {
125
+ "value": 25.727272727272727,
126
+ "min": 3.7954545454545454,
127
+ "max": 25.727272727272727,
128
+ "count": 20
129
+ },
130
+ "SnowballTarget.Policy.ExtrinsicReward.sum": {
131
+ "value": 1132.0,
132
+ "min": 167.0,
133
+ "max": 1371.0,
134
+ "count": 20
135
+ },
136
+ "SnowballTarget.IsTraining.mean": {
137
  "value": 1.0,
138
  "min": 1.0,
139
  "max": 1.0,
140
+ "count": 20
141
  },
142
+ "SnowballTarget.IsTraining.sum": {
143
  "value": 1.0,
144
  "min": 1.0,
145
  "max": 1.0,
146
+ "count": 20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  }
148
  },
149
  "metadata": {
150
  "timer_format_version": "0.1.0",
151
+ "start_time_seconds": "1751405822",
152
  "python_version": "3.10.18 (main, Jun 4 2025, 08:56:00) [GCC 13.3.0]",
153
+ "command_line_arguments": "/home/cogollo/mlagents_env/bin/mlagents-learn ./config/ppo/SnowballTarget.yaml --env=./training-envs-executables/linux/SnowballTarget/SnowballTarget --run-id=SnowballTarget1 --no-graphics",
154
  "mlagents_version": "1.2.0.dev0",
155
  "mlagents_envs_version": "1.2.0.dev0",
156
  "communication_protocol_version": "1.5.0",
157
  "pytorch_version": "2.7.1+cu126",
158
  "numpy_version": "1.23.5",
159
+ "end_time_seconds": "1751406265"
160
  },
161
+ "total": 417.07360755499394,
162
  "count": 1,
163
+ "self": 0.2710036929929629,
164
  "children": {
165
  "run_training.setup": {
166
+ "total": 0.02634564299660269,
167
  "count": 1,
168
+ "self": 0.02634564299660269
169
  },
170
  "TrainerController.start_learning": {
171
+ "total": 416.7762582190044,
172
  "count": 1,
173
+ "self": 0.32326647778972983,
174
  "children": {
175
  "TrainerController._reset_env": {
176
+ "total": 4.07515343400155,
177
  "count": 1,
178
+ "self": 4.07515343400155
179
  },
180
  "TrainerController.advance": {
181
+ "total": 412.28849097521015,
182
+ "count": 18192,
183
+ "self": 0.34006819097703556,
184
  "children": {
185
  "env_step": {
186
+ "total": 271.70272140239103,
187
+ "count": 18192,
188
+ "self": 157.74910049094615,
189
  "children": {
190
  "SubprocessEnvManager._take_step": {
191
+ "total": 113.73539778144914,
192
+ "count": 18192,
193
+ "self": 1.3056365732918493,
194
  "children": {
195
  "TorchPolicy.evaluate": {
196
+ "total": 112.42976120815729,
197
+ "count": 18192,
198
+ "self": 112.42976120815729
199
  }
200
  }
201
  },
202
  "workers": {
203
+ "total": 0.21822312999574933,
204
+ "count": 18192,
205
  "self": 0.0,
206
  "children": {
207
  "worker_root": {
208
+ "total": 415.81698639861133,
209
+ "count": 18192,
210
  "is_parallel": true,
211
+ "self": 279.7954934797817,
212
  "children": {
213
  "run_training.setup": {
214
  "total": 0.0,
 
217
  "self": 0.0,
218
  "children": {
219
  "steps_from_proto": {
220
+ "total": 0.0030962630044086836,
221
  "count": 1,
222
  "is_parallel": true,
223
+ "self": 0.0018048600031761453,
224
  "children": {
225
  "_process_rank_one_or_two_observation": {
226
+ "total": 0.0012914030012325384,
227
+ "count": 10,
228
  "is_parallel": true,
229
+ "self": 0.0012914030012325384
230
  }
231
  }
232
  },
233
  "UnityEnvironment.step": {
234
+ "total": 0.01975389699509833,
235
  "count": 1,
236
  "is_parallel": true,
237
+ "self": 0.0002452120024827309,
238
  "children": {
239
  "UnityEnvironment._generate_step_input": {
240
+ "total": 0.00018277999333804473,
241
  "count": 1,
242
  "is_parallel": true,
243
+ "self": 0.00018277999333804473
244
  },
245
  "communicator.exchange": {
246
+ "total": 0.01844679200439714,
247
  "count": 1,
248
  "is_parallel": true,
249
+ "self": 0.01844679200439714
250
  },
251
  "steps_from_proto": {
252
+ "total": 0.0008791129948804155,
253
  "count": 1,
254
  "is_parallel": true,
255
+ "self": 0.0001930310027091764,
256
  "children": {
257
  "_process_rank_one_or_two_observation": {
258
+ "total": 0.0006860819921712391,
259
+ "count": 10,
260
  "is_parallel": true,
261
+ "self": 0.0006860819921712391
262
  }
263
  }
264
  }
 
267
  }
268
  },
269
  "UnityEnvironment.step": {
270
+ "total": 136.0214929188296,
271
+ "count": 18191,
272
  "is_parallel": true,
273
+ "self": 4.181488279253244,
274
  "children": {
275
  "UnityEnvironment._generate_step_input": {
276
+ "total": 2.7266511430279934,
277
+ "count": 18191,
278
  "is_parallel": true,
279
+ "self": 2.7266511430279934
280
  },
281
  "communicator.exchange": {
282
+ "total": 115.89310034152732,
283
+ "count": 18191,
284
  "is_parallel": true,
285
+ "self": 115.89310034152732
286
  },
287
  "steps_from_proto": {
288
+ "total": 13.220253155021055,
289
+ "count": 18191,
290
  "is_parallel": true,
291
+ "self": 3.057622793756309,
292
  "children": {
293
  "_process_rank_one_or_two_observation": {
294
+ "total": 10.162630361264746,
295
+ "count": 181910,
296
  "is_parallel": true,
297
+ "self": 10.162630361264746
298
  }
299
  }
300
  }
 
307
  }
308
  },
309
  "trainer_advance": {
310
+ "total": 140.24570138184208,
311
+ "count": 18192,
312
+ "self": 0.4279935143276816,
313
  "children": {
314
  "process_trajectory": {
315
+ "total": 27.836928472475847,
316
+ "count": 18192,
317
+ "self": 27.384556184471876,
318
  "children": {
319
  "RLTrainer._checkpoint": {
320
+ "total": 0.45237228800397133,
321
+ "count": 4,
322
+ "self": 0.45237228800397133
323
  }
324
  }
325
  },
326
  "_update_policy": {
327
+ "total": 111.98077939503855,
328
+ "count": 90,
329
+ "self": 23.712709611027094,
330
  "children": {
331
  "TorchPPOOptimizer.update": {
332
+ "total": 88.26806978401146,
333
+ "count": 4587,
334
+ "self": 88.26806978401146
335
  }
336
  }
337
  }
 
340
  }
341
  },
342
  "trainer_threads": {
343
+ "total": 6.400005077011883e-07,
344
  "count": 1,
345
+ "self": 6.400005077011883e-07
346
  },
347
  "TrainerController._save_models": {
348
+ "total": 0.08934669200243661,
349
  "count": 1,
350
+ "self": 0.0004997930009267293,
351
  "children": {
352
  "RLTrainer._checkpoint": {
353
+ "total": 0.08884689900150988,
354
  "count": 1,
355
+ "self": 0.08884689900150988
356
  }
357
  }
358
  }
run_logs/training_status.json CHANGED
@@ -1,50 +1,59 @@
1
  {
2
- "Pyramids": {
3
  "checkpoints": [
4
  {
5
- "steps": 16000,
6
- "file_path": "results/Pyramids Training/Pyramids/Pyramids-16000.onnx",
7
- "reward": null,
8
- "creation_time": 1751406841.3736622,
9
  "auxillary_file_paths": [
10
- "results/Pyramids Training/Pyramids/Pyramids-16000.pt"
11
  ]
12
  },
13
  {
14
- "steps": 499929,
15
- "file_path": "results/Pyramids Training/Pyramids/Pyramids-499929.onnx",
16
- "reward": 1.568000003695488,
17
- "creation_time": 1751407836.530037,
18
  "auxillary_file_paths": [
19
- "results/Pyramids Training/Pyramids/Pyramids-499929.pt"
20
  ]
21
  },
22
  {
23
- "steps": 999905,
24
- "file_path": "results/Pyramids Training/Pyramids/Pyramids-999905.onnx",
25
- "reward": 1.7605000361800194,
26
- "creation_time": 1751408842.3427362,
27
  "auxillary_file_paths": [
28
- "results/Pyramids Training/Pyramids/Pyramids-999905.pt"
29
  ]
30
  },
31
  {
32
- "steps": 1000033,
33
- "file_path": "results/Pyramids Training/Pyramids/Pyramids-1000033.onnx",
34
- "reward": 1.7605000361800194,
35
- "creation_time": 1751408842.4458108,
36
  "auxillary_file_paths": [
37
- "results/Pyramids Training/Pyramids/Pyramids-1000033.pt"
 
 
 
 
 
 
 
 
 
38
  ]
39
  }
40
  ],
41
  "final_checkpoint": {
42
- "steps": 1000033,
43
- "file_path": "results/Pyramids Training/Pyramids.onnx",
44
- "reward": 1.7605000361800194,
45
- "creation_time": 1751408842.4458108,
46
  "auxillary_file_paths": [
47
- "results/Pyramids Training/Pyramids/Pyramids-1000033.pt"
48
  ]
49
  }
50
  },
 
1
  {
2
+ "SnowballTarget": {
3
  "checkpoints": [
4
  {
5
+ "steps": 49936,
6
+ "file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-49936.onnx",
7
+ "reward": 15.181818181818182,
8
+ "creation_time": 1751405937.6387424,
9
  "auxillary_file_paths": [
10
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-49936.pt"
11
  ]
12
  },
13
  {
14
+ "steps": 99960,
15
+ "file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-99960.onnx",
16
+ "reward": 22.90909090909091,
17
+ "creation_time": 1751406047.5688028,
18
  "auxillary_file_paths": [
19
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-99960.pt"
20
  ]
21
  },
22
  {
23
+ "steps": 149984,
24
+ "file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-149984.onnx",
25
+ "reward": 24.363636363636363,
26
+ "creation_time": 1751406158.3935463,
27
  "auxillary_file_paths": [
28
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-149984.pt"
29
  ]
30
  },
31
  {
32
+ "steps": 199984,
33
+ "file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-199984.onnx",
34
+ "reward": 26.818181818181817,
35
+ "creation_time": 1751406265.164866,
36
  "auxillary_file_paths": [
37
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-199984.pt"
38
+ ]
39
+ },
40
+ {
41
+ "steps": 200112,
42
+ "file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-200112.onnx",
43
+ "reward": 26.818181818181817,
44
+ "creation_time": 1751406265.2688215,
45
+ "auxillary_file_paths": [
46
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-200112.pt"
47
  ]
48
  }
49
  ],
50
  "final_checkpoint": {
51
+ "steps": 200112,
52
+ "file_path": "results/SnowballTarget1/SnowballTarget.onnx",
53
+ "reward": 26.818181818181817,
54
+ "creation_time": 1751406265.2688215,
55
  "auxillary_file_paths": [
56
+ "results/SnowballTarget1/SnowballTarget/SnowballTarget-200112.pt"
57
  ]
58
  }
59
  },