pregonas commited on
Commit
e9970db
1 Parent(s): ec7553b

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-SoccerTwos
9
+ library_name: ml-agents
10
+ ---
11
+
12
+ # **poca** Agent playing **SoccerTwos**
13
+ This is a trained model of a **poca** agent playing **SoccerTwos** 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-SoccerTwos
28
+ 2. Step 1: Write your model_id: pregonas/poca-SoccerTwos
29
+ 3. Step 2: Select your *.nn /*.onnx file
30
+ 4. Click on Watch the agent play 👀
31
+
SoccerTwos/SoccerTwos-499284.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5d3ba79a3356047932ae30bb9862d4d164b77dd62e830d2e02e69df9b334297
3
+ size 28441333
SoccerTwos/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78979d43743591822c272457f00eb016434a533b1eae3935fbd2dff94a62f561
3
+ size 28440395
SoccerTwos/events.out.tfevents.1680349117.DESKTOP-KMJA2G5.15140.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64e0d0785197da8bdd135a9786e2bd9308bfcb9b8b084dfd14dc3765b505fcb8
3
+ size 286727
config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"default_settings": null, "behaviors": {"SoccerTwos": {"trainer_type": "poca", "hyperparameters": {"batch_size": 2048, "buffer_size": 20480, "learning_rate": 0.00025, "beta": 0.005, "epsilon": 0.2, "lambd": 0.95, "num_epoch": 3, "learning_rate_schedule": "constant", "beta_schedule": "constant", "epsilon_schedule": "constant"}, "checkpoint_interval": 500000, "network_settings": {"normalize": true, "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}}}, "init_path": null, "keep_checkpoints": 5, "even_checkpoints": false, "max_steps": 50000000, "time_horizon": 1000, "summary_freq": 10000, "threaded": false, "self_play": {"save_steps": 50000, "team_change": 200000, "swap_steps": 2000, "window": 10, "play_against_latest_model_ratio": 0.5, "initial_elo": 1200.0}, "behavioral_cloning": null}}, "env_settings": {"env_path": "./training-envs-executables/SoccerTwos/SoccerTwos.exe", "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": "SoccerTwos", "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,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_settings: null
2
+ behaviors:
3
+ SoccerTwos:
4
+ trainer_type: poca
5
+ hyperparameters:
6
+ batch_size: 2048
7
+ buffer_size: 20480
8
+ learning_rate: 0.00025
9
+ beta: 0.005
10
+ epsilon: 0.2
11
+ lambd: 0.95
12
+ num_epoch: 3
13
+ learning_rate_schedule: constant
14
+ beta_schedule: constant
15
+ epsilon_schedule: constant
16
+ checkpoint_interval: 500000
17
+ network_settings:
18
+ normalize: true
19
+ hidden_units: 512
20
+ num_layers: 2
21
+ vis_encode_type: simple
22
+ memory: null
23
+ goal_conditioning_type: hyper
24
+ deterministic: false
25
+ reward_signals:
26
+ extrinsic:
27
+ gamma: 0.99
28
+ strength: 1.0
29
+ network_settings:
30
+ normalize: false
31
+ hidden_units: 128
32
+ num_layers: 2
33
+ vis_encode_type: simple
34
+ memory: null
35
+ goal_conditioning_type: hyper
36
+ deterministic: false
37
+ init_path: null
38
+ keep_checkpoints: 5
39
+ even_checkpoints: false
40
+ max_steps: 50000000
41
+ time_horizon: 1000
42
+ summary_freq: 10000
43
+ threaded: false
44
+ self_play:
45
+ save_steps: 50000
46
+ team_change: 200000
47
+ swap_steps: 2000
48
+ window: 10
49
+ play_against_latest_model_ratio: 0.5
50
+ initial_elo: 1200.0
51
+ behavioral_cloning: null
52
+ env_settings:
53
+ env_path: ./training-envs-executables/SoccerTwos/SoccerTwos.exe
54
+ env_args: null
55
+ base_port: 5005
56
+ num_envs: 1
57
+ num_areas: 1
58
+ seed: -1
59
+ max_lifetime_restarts: 10
60
+ restarts_rate_limit_n: 1
61
+ restarts_rate_limit_period_s: 60
62
+ engine_settings:
63
+ width: 84
64
+ height: 84
65
+ quality_level: 5
66
+ time_scale: 20
67
+ target_frame_rate: -1
68
+ capture_frame_rate: 60
69
+ no_graphics: true
70
+ environment_parameters: null
71
+ checkpoint_settings:
72
+ run_id: SoccerTwos
73
+ initialize_from: null
74
+ load_model: false
75
+ resume: false
76
+ force: false
77
+ train_model: false
78
+ inference: false
79
+ results_dir: results
80
+ torch_settings:
81
+ device: null
82
+ debug: false
run_logs/Player-0.log ADDED
@@ -0,0 +1,500 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = 'D:/Reinforcement Learning/ml-agents/training-envs-executables/SoccerTwos/SoccerTwos_Data/Managed'
2
+ Mono config path = 'D:/Reinforcement Learning/ml-agents/training-envs-executables/SoccerTwos/MonoBleedingEdge/etc'
3
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
4
+ [Subsystems] Discovering subsystems at path D:/Reinforcement Learning/ml-agents/training-envs-executables/SoccerTwos/SoccerTwos_Data/UnitySubsystems
5
+ Forcing GfxDevice: Null
6
+ GfxDevice: creating device client; threaded=0; jobified=0
7
+ NullGfxDevice:
8
+ Version: NULL 1.0 [1.0]
9
+ Renderer: Null Device
10
+ Vendor: Unity Technologies
11
+ Begin MonoManager ReloadAssembly
12
+ - Completed reload, in 4.543 seconds
13
+ ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
14
+ Microsoft Media Foundation video decoding to texture disabled: graphics device is Null, only Direct3D 11 and Direct3D 12 (only on desktop) are supported for hardware-accelerated video decoding.
15
+ ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
16
+ ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
17
+ WARNING: Shader Unsupported: 'Standard (Specular setup)' - All subshaders removed
18
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
19
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
20
+ ERROR: Shader Standard (Specular setup) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
21
+ WARNING: Shader Unsupported: 'Standard (Specular setup)' - 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?
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
+ ERROR: Shader Autodesk Interactive shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
28
+ WARNING: Shader Unsupported: 'Autodesk Interactive' - All subshaders removed
29
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
30
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
31
+ WARNING: Shader Unsupported: 'Standard' - 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
+ ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
35
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
36
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
37
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
38
+ UnloadTime: 0.844900 ms
39
+ Registered Communicator in Agent.
40
+ ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
41
+ TOO LONG
42
+ TOO LONG
43
+ TOO LONG
44
+ TOO LONG
45
+ TOO LONG
46
+ TOO LONG
47
+ TOO LONG
48
+ TOO LONG
49
+ TOO LONG
50
+ TOO LONG
51
+ TOO LONG
52
+ TOO LONG
53
+ TOO LONG
54
+ TOO LONG
55
+ TOO LONG
56
+ TOO LONG
57
+ TOO LONG
58
+ TOO LONG
59
+ TOO LONG
60
+ TOO LONG
61
+ TOO LONG
62
+ TOO LONG
63
+ TOO LONG
64
+ TOO LONG
65
+ TOO LONG
66
+ TOO LONG
67
+ TOO LONG
68
+ TOO LONG
69
+ TOO LONG
70
+ TOO LONG
71
+ TOO LONG
72
+ TOO LONG
73
+ TOO LONG
74
+ TOO LONG
75
+ TOO LONG
76
+ TOO LONG
77
+ TOO LONG
78
+ TOO LONG
79
+ TOO LONG
80
+ TOO LONG
81
+ TOO LONG
82
+ TOO LONG
83
+ TOO LONG
84
+ TOO LONG
85
+ TOO LONG
86
+ TOO LONG
87
+ TOO LONG
88
+ TOO LONG
89
+ TOO LONG
90
+ TOO LONG
91
+ TOO LONG
92
+ TOO LONG
93
+ TOO LONG
94
+ TOO LONG
95
+ TOO LONG
96
+ TOO LONG
97
+ TOO LONG
98
+ TOO LONG
99
+ TOO LONG
100
+ TOO LONG
101
+ TOO LONG
102
+ TOO LONG
103
+ TOO LONG
104
+ TOO LONG
105
+ TOO LONG
106
+ TOO LONG
107
+ TOO LONG
108
+ TOO LONG
109
+ TOO LONG
110
+ TOO LONG
111
+ TOO LONG
112
+ TOO LONG
113
+ TOO LONG
114
+ TOO LONG
115
+ TOO LONG
116
+ TOO LONG
117
+ TOO LONG
118
+ TOO LONG
119
+ TOO LONG
120
+ TOO LONG
121
+ TOO LONG
122
+ TOO LONG
123
+ TOO LONG
124
+ TOO LONG
125
+ TOO LONG
126
+ TOO LONG
127
+ TOO LONG
128
+ TOO LONG
129
+ TOO LONG
130
+ TOO LONG
131
+ TOO LONG
132
+ TOO LONG
133
+ TOO LONG
134
+ TOO LONG
135
+ TOO LONG
136
+ TOO LONG
137
+ TOO LONG
138
+ TOO LONG
139
+ TOO LONG
140
+ TOO LONG
141
+ TOO LONG
142
+ TOO LONG
143
+ TOO LONG
144
+ TOO LONG
145
+ TOO LONG
146
+ TOO LONG
147
+ TOO LONG
148
+ TOO LONG
149
+ TOO LONG
150
+ TOO LONG
151
+ TOO LONG
152
+ TOO LONG
153
+ TOO LONG
154
+ TOO LONG
155
+ TOO LONG
156
+ TOO LONG
157
+ TOO LONG
158
+ TOO LONG
159
+ TOO LONG
160
+ TOO LONG
161
+ TOO LONG
162
+ TOO LONG
163
+ TOO LONG
164
+ TOO LONG
165
+ TOO LONG
166
+ TOO LONG
167
+ TOO LONG
168
+ TOO LONG
169
+ TOO LONG
170
+ TOO LONG
171
+ TOO LONG
172
+ TOO LONG
173
+ TOO LONG
174
+ TOO LONG
175
+ TOO LONG
176
+ TOO LONG
177
+ TOO LONG
178
+ TOO LONG
179
+ TOO LONG
180
+ TOO LONG
181
+ TOO LONG
182
+ TOO LONG
183
+ TOO LONG
184
+ TOO LONG
185
+ TOO LONG
186
+ TOO LONG
187
+ TOO LONG
188
+ TOO LONG
189
+ TOO LONG
190
+ TOO LONG
191
+ TOO LONG
192
+ TOO LONG
193
+ TOO LONG
194
+ TOO LONG
195
+ TOO LONG
196
+ TOO LONG
197
+ TOO LONG
198
+ TOO LONG
199
+ TOO LONG
200
+ TOO LONG
201
+ TOO LONG
202
+ TOO LONG
203
+ TOO LONG
204
+ TOO LONG
205
+ TOO LONG
206
+ TOO LONG
207
+ TOO LONG
208
+ TOO LONG
209
+ TOO LONG
210
+ TOO LONG
211
+ TOO LONG
212
+ TOO LONG
213
+ TOO LONG
214
+ TOO LONG
215
+ TOO LONG
216
+ TOO LONG
217
+ TOO LONG
218
+ TOO LONG
219
+ TOO LONG
220
+ TOO LONG
221
+ TOO LONG
222
+ TOO LONG
223
+ TOO LONG
224
+ TOO LONG
225
+ TOO LONG
226
+ TOO LONG
227
+ TOO LONG
228
+ TOO LONG
229
+ TOO LONG
230
+ TOO LONG
231
+ TOO LONG
232
+ TOO LONG
233
+ TOO LONG
234
+ TOO LONG
235
+ TOO LONG
236
+ TOO LONG
237
+ TOO LONG
238
+ TOO LONG
239
+ TOO LONG
240
+ TOO LONG
241
+ TOO LONG
242
+ TOO LONG
243
+ TOO LONG
244
+ TOO LONG
245
+ TOO LONG
246
+ TOO LONG
247
+ TOO LONG
248
+ TOO LONG
249
+ TOO LONG
250
+ TOO LONG
251
+ TOO LONG
252
+ TOO LONG
253
+ TOO LONG
254
+ TOO LONG
255
+ TOO LONG
256
+ TOO LONG
257
+ TOO LONG
258
+ TOO LONG
259
+ Setting up 4 worker threads for Enlighten.
260
+ Memory Statistics:
261
+ [ALLOC_TEMP_TLS] TLS Allocator
262
+ StackAllocators :
263
+ [ALLOC_TEMP_MAIN]
264
+ Peak usage frame count: [8.0 KB-16.0 KB]: 9685 frames, [2.0 MB-4.0 MB]: 1 frames
265
+ Initial Block Size 4.0 MB
266
+ Current Block Size 4.0 MB
267
+ Peak Allocated Bytes 2.0 MB
268
+ Overflow Count 0
269
+ [ALLOC_TEMP_Loading.AsyncRead]
270
+ Initial Block Size 64.0 KB
271
+ Current Block Size 64.0 KB
272
+ Peak Allocated Bytes 345 B
273
+ Overflow Count 0
274
+ [ALLOC_TEMP_Loading.PreloadManager]
275
+ Initial Block Size 256.0 KB
276
+ Current Block Size 256.0 KB
277
+ Peak Allocated Bytes 67.1 KB
278
+ Overflow Count 4
279
+ [ALLOC_TEMP_Background Job.Worker 8]
280
+ Initial Block Size 32.0 KB
281
+ Current Block Size 32.0 KB
282
+ Peak Allocated Bytes 54 B
283
+ Overflow Count 0
284
+ [ALLOC_TEMP_Job.Worker 6]
285
+ Initial Block Size 256.0 KB
286
+ Current Block Size 256.0 KB
287
+ Peak Allocated Bytes 0 B
288
+ Overflow Count 0
289
+ [ALLOC_TEMP_Job.Worker 0]
290
+ Initial Block Size 256.0 KB
291
+ Current Block Size 256.0 KB
292
+ Peak Allocated Bytes 0 B
293
+ Overflow Count 0
294
+ [ALLOC_TEMP_Background Job.Worker 10]
295
+ Initial Block Size 32.0 KB
296
+ Current Block Size 32.0 KB
297
+ Peak Allocated Bytes 54 B
298
+ Overflow Count 0
299
+ [ALLOC_TEMP_Background Job.Worker 9]
300
+ Initial Block Size 32.0 KB
301
+ Current Block Size 32.0 KB
302
+ Peak Allocated Bytes 54 B
303
+ Overflow Count 0
304
+ [ALLOC_TEMP_Job.Worker 5]
305
+ Initial Block Size 256.0 KB
306
+ Current Block Size 256.0 KB
307
+ Peak Allocated Bytes 0.8 KB
308
+ Overflow Count 0
309
+ [ALLOC_TEMP_Background Job.Worker 14]
310
+ Initial Block Size 32.0 KB
311
+ Current Block Size 32.0 KB
312
+ Peak Allocated Bytes 54 B
313
+ Overflow Count 0
314
+ [ALLOC_TEMP_Background Job.Worker 6]
315
+ Initial Block Size 32.0 KB
316
+ Current Block Size 32.0 KB
317
+ Peak Allocated Bytes 54 B
318
+ Overflow Count 0
319
+ [ALLOC_TEMP_Job.Worker 4]
320
+ Initial Block Size 256.0 KB
321
+ Current Block Size 256.0 KB
322
+ Peak Allocated Bytes 0 B
323
+ Overflow Count 0
324
+ [ALLOC_TEMP_Job.Worker 3]
325
+ Initial Block Size 256.0 KB
326
+ Current Block Size 256.0 KB
327
+ Peak Allocated Bytes 0 B
328
+ Overflow Count 0
329
+ [ALLOC_TEMP_Background Job.Worker 12]
330
+ Initial Block Size 32.0 KB
331
+ Current Block Size 32.0 KB
332
+ Peak Allocated Bytes 54 B
333
+ Overflow Count 0
334
+ [ALLOC_TEMP_EnlightenWorker] x 4
335
+ Initial Block Size 64.0 KB
336
+ Current Block Size 64.0 KB
337
+ Peak Allocated Bytes 54 B
338
+ Overflow Count 0
339
+ [ALLOC_TEMP_Background Job.Worker 15]
340
+ Initial Block Size 32.0 KB
341
+ Current Block Size 32.0 KB
342
+ Peak Allocated Bytes 54 B
343
+ Overflow Count 0
344
+ [ALLOC_TEMP_Background Job.Worker 1]
345
+ Initial Block Size 32.0 KB
346
+ Current Block Size 32.0 KB
347
+ Peak Allocated Bytes 54 B
348
+ Overflow Count 0
349
+ [ALLOC_TEMP_Background Job.Worker 2]
350
+ Initial Block Size 32.0 KB
351
+ Current Block Size 32.0 KB
352
+ Peak Allocated Bytes 54 B
353
+ Overflow Count 0
354
+ [ALLOC_TEMP_Background Job.Worker 7]
355
+ Initial Block Size 32.0 KB
356
+ Current Block Size 32.0 KB
357
+ Peak Allocated Bytes 54 B
358
+ Overflow Count 0
359
+ [ALLOC_TEMP_AssetGarbageCollectorHelper] x 7
360
+ Initial Block Size 64.0 KB
361
+ Current Block Size 64.0 KB
362
+ Peak Allocated Bytes 0 B
363
+ Overflow Count 0
364
+ [ALLOC_TEMP_Background Job.Worker 5]
365
+ Initial Block Size 32.0 KB
366
+ Current Block Size 32.0 KB
367
+ Peak Allocated Bytes 54 B
368
+ Overflow Count 0
369
+ [ALLOC_TEMP_Background Job.Worker 13]
370
+ Initial Block Size 32.0 KB
371
+ Current Block Size 32.0 KB
372
+ Peak Allocated Bytes 54 B
373
+ Overflow Count 0
374
+ [ALLOC_TEMP_Job.Worker 1]
375
+ Initial Block Size 256.0 KB
376
+ Current Block Size 256.0 KB
377
+ Peak Allocated Bytes 0 B
378
+ Overflow Count 0
379
+ [ALLOC_TEMP_Job.Worker 2]
380
+ Initial Block Size 256.0 KB
381
+ Current Block Size 256.0 KB
382
+ Peak Allocated Bytes 0 B
383
+ Overflow Count 0
384
+ [ALLOC_TEMP_Background Job.Worker 3]
385
+ Initial Block Size 32.0 KB
386
+ Current Block Size 32.0 KB
387
+ Peak Allocated Bytes 54 B
388
+ Overflow Count 0
389
+ [ALLOC_TEMP_Background Job.Worker 11]
390
+ Initial Block Size 32.0 KB
391
+ Current Block Size 32.0 KB
392
+ Peak Allocated Bytes 54 B
393
+ Overflow Count 0
394
+ [ALLOC_TEMP_Background Job.Worker 0]
395
+ Initial Block Size 32.0 KB
396
+ Current Block Size 32.0 KB
397
+ Peak Allocated Bytes 54 B
398
+ Overflow Count 0
399
+ [ALLOC_TEMP_Background Job.Worker 4]
400
+ Initial Block Size 32.0 KB
401
+ Current Block Size 32.0 KB
402
+ Peak Allocated Bytes 54 B
403
+ Overflow Count 0
404
+ [ALLOC_TEMP_BatchDeleteObjects]
405
+ Initial Block Size 64.0 KB
406
+ Current Block Size 64.0 KB
407
+ Peak Allocated Bytes 54 B
408
+ Overflow Count 0
409
+ [ALLOC_DEFAULT] Dual Thread Allocator
410
+ Peak main deferred allocation count 3
411
+ [ALLOC_BUCKET]
412
+ Large Block size 4.0 MB
413
+ Used Block count 1
414
+ Peak Allocated bytes 0.9 MB
415
+ [ALLOC_DEFAULT_MAIN]
416
+ Peak usage frame count: [4.0 MB-8.0 MB]: 9686 frames
417
+ Requested Block Size 16.0 MB
418
+ Peak Block count 1
419
+ Peak Allocated memory 5.0 MB
420
+ Peak Large allocation bytes 0 B
421
+ [ALLOC_DEFAULT_THREAD]
422
+ Peak usage frame count: [16.0 MB-32.0 MB]: 9686 frames
423
+ Requested Block Size 16.0 MB
424
+ Peak Block count 1
425
+ Peak Allocated memory 17.4 MB
426
+ Peak Large allocation bytes 16.0 MB
427
+ [ALLOC_TEMP_JOB_1_FRAME]
428
+ Initial Block Size 2.0 MB
429
+ Used Block Count 1
430
+ Overflow Count (too large) 0
431
+ Overflow Count (full) 0
432
+ [ALLOC_TEMP_JOB_2_FRAMES]
433
+ Initial Block Size 2.0 MB
434
+ Used Block Count 1
435
+ Overflow Count (too large) 0
436
+ Overflow Count (full) 0
437
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
438
+ Initial Block Size 2.0 MB
439
+ Used Block Count 2
440
+ Overflow Count (too large) 0
441
+ Overflow Count (full) 0
442
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
443
+ Initial Block Size 1.0 MB
444
+ Used Block Count 3
445
+ Overflow Count (too large) 0
446
+ Overflow Count (full) 0
447
+ [ALLOC_GFX] Dual Thread Allocator
448
+ Peak main deferred allocation count 0
449
+ [ALLOC_BUCKET]
450
+ Large Block size 4.0 MB
451
+ Used Block count 1
452
+ Peak Allocated bytes 0.9 MB
453
+ [ALLOC_GFX_MAIN]
454
+ Peak usage frame count: [32.0 KB-64.0 KB]: 9685 frames, [64.0 KB-128.0 KB]: 1 frames
455
+ Requested Block Size 16.0 MB
456
+ Peak Block count 1
457
+ Peak Allocated memory 65.6 KB
458
+ Peak Large allocation bytes 0 B
459
+ [ALLOC_GFX_THREAD]
460
+ Peak usage frame count: [128.0 KB-256.0 KB]: 9686 frames
461
+ Requested Block Size 16.0 MB
462
+ Peak Block count 1
463
+ Peak Allocated memory 173.6 KB
464
+ Peak Large allocation bytes 0 B
465
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
466
+ Peak main deferred allocation count 2
467
+ [ALLOC_BUCKET]
468
+ Large Block size 4.0 MB
469
+ Used Block count 1
470
+ Peak Allocated bytes 0.9 MB
471
+ [ALLOC_CACHEOBJECTS_MAIN]
472
+ Peak usage frame count: [0.5 MB-1.0 MB]: 9686 frames
473
+ Requested Block Size 4.0 MB
474
+ Peak Block count 1
475
+ Peak Allocated memory 0.6 MB
476
+ Peak Large allocation bytes 0 B
477
+ [ALLOC_CACHEOBJECTS_THREAD]
478
+ Peak usage frame count: [0.5 MB-1.0 MB]: 9685 frames, [2.0 MB-4.0 MB]: 1 frames
479
+ Requested Block Size 4.0 MB
480
+ Peak Block count 1
481
+ Peak Allocated memory 2.2 MB
482
+ Peak Large allocation bytes 0 B
483
+ [ALLOC_TYPETREE] Dual Thread Allocator
484
+ Peak main deferred allocation count 0
485
+ [ALLOC_BUCKET]
486
+ Large Block size 4.0 MB
487
+ Used Block count 1
488
+ Peak Allocated bytes 0.9 MB
489
+ [ALLOC_TYPETREE_MAIN]
490
+ Peak usage frame count: [0-1.0 KB]: 9686 frames
491
+ Requested Block Size 2.0 MB
492
+ Peak Block count 1
493
+ Peak Allocated memory 1.0 KB
494
+ Peak Large allocation bytes 0 B
495
+ [ALLOC_TYPETREE_THREAD]
496
+ Peak usage frame count: [1.0 KB-2.0 KB]: 9685 frames, [2.0 KB-4.0 KB]: 1 frames
497
+ Requested Block Size 2.0 MB
498
+ Peak Block count 1
499
+ Peak Allocated memory 2.2 KB
500
+ Peak Large allocation bytes 0 B
run_logs/timers.json ADDED
@@ -0,0 +1,363 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "gauges": {
4
+ "SoccerTwos.Policy.Entropy.mean": {
5
+ "value": 3.1251449584960938,
6
+ "min": 3.1212997436523438,
7
+ "max": 3.2956295013427734,
8
+ "count": 50
9
+ },
10
+ "SoccerTwos.Policy.Entropy.sum": {
11
+ "value": 57602.671875,
12
+ "min": 17051.029296875,
13
+ "max": 105460.140625,
14
+ "count": 50
15
+ },
16
+ "SoccerTwos.Environment.EpisodeLength.mean": {
17
+ "value": 900.6666666666666,
18
+ "min": 479.0,
19
+ "max": 999.0,
20
+ "count": 50
21
+ },
22
+ "SoccerTwos.Environment.EpisodeLength.sum": {
23
+ "value": 21616.0,
24
+ "min": 4236.0,
25
+ "max": 31968.0,
26
+ "count": 50
27
+ },
28
+ "SoccerTwos.Step.mean": {
29
+ "value": 499284.0,
30
+ "min": 9000.0,
31
+ "max": 499284.0,
32
+ "count": 50
33
+ },
34
+ "SoccerTwos.Step.sum": {
35
+ "value": 499284.0,
36
+ "min": 9000.0,
37
+ "max": 499284.0,
38
+ "count": 50
39
+ },
40
+ "SoccerTwos.Policy.ExtrinsicBaselineEstimate.mean": {
41
+ "value": 3.1408853828907013e-07,
42
+ "min": -0.010749973356723785,
43
+ "max": 0.07619715481996536,
44
+ "count": 50
45
+ },
46
+ "SoccerTwos.Policy.ExtrinsicBaselineEstimate.sum": {
47
+ "value": 3.4549739211797714e-06,
48
+ "min": -0.10749973356723785,
49
+ "max": 1.1565316915512085,
50
+ "count": 50
51
+ },
52
+ "SoccerTwos.Policy.ExtrinsicValueEstimate.mean": {
53
+ "value": -0.00010741464211605489,
54
+ "min": -0.013276058249175549,
55
+ "max": 0.07619951665401459,
56
+ "count": 50
57
+ },
58
+ "SoccerTwos.Policy.ExtrinsicValueEstimate.sum": {
59
+ "value": -0.0011815610341727734,
60
+ "min": -0.13276058435440063,
61
+ "max": 1.156718373298645,
62
+ "count": 50
63
+ },
64
+ "SoccerTwos.Environment.CumulativeReward.mean": {
65
+ "value": 0.0,
66
+ "min": 0.0,
67
+ "max": 0.0,
68
+ "count": 50
69
+ },
70
+ "SoccerTwos.Environment.CumulativeReward.sum": {
71
+ "value": 0.0,
72
+ "min": 0.0,
73
+ "max": 0.0,
74
+ "count": 50
75
+ },
76
+ "SoccerTwos.Policy.ExtrinsicReward.mean": {
77
+ "value": -0.18181818181818182,
78
+ "min": -0.631578947368421,
79
+ "max": 0.2527384666296152,
80
+ "count": 50
81
+ },
82
+ "SoccerTwos.Policy.ExtrinsicReward.sum": {
83
+ "value": -2.0,
84
+ "min": -12.0,
85
+ "max": 3.2856000661849976,
86
+ "count": 50
87
+ },
88
+ "SoccerTwos.Environment.GroupCumulativeReward.mean": {
89
+ "value": -0.18181818181818182,
90
+ "min": -0.631578947368421,
91
+ "max": 0.2527384666296152,
92
+ "count": 50
93
+ },
94
+ "SoccerTwos.Environment.GroupCumulativeReward.sum": {
95
+ "value": -2.0,
96
+ "min": -12.0,
97
+ "max": 3.2856000661849976,
98
+ "count": 50
99
+ },
100
+ "SoccerTwos.IsTraining.mean": {
101
+ "value": 1.0,
102
+ "min": 1.0,
103
+ "max": 1.0,
104
+ "count": 50
105
+ },
106
+ "SoccerTwos.IsTraining.sum": {
107
+ "value": 1.0,
108
+ "min": 1.0,
109
+ "max": 1.0,
110
+ "count": 50
111
+ },
112
+ "SoccerTwos.Self-play.ELO.mean": {
113
+ "value": 1199.6774363117643,
114
+ "min": 1199.411457647468,
115
+ "max": 1208.9741670567967,
116
+ "count": 38
117
+ },
118
+ "SoccerTwos.Self-play.ELO.sum": {
119
+ "value": 2399.3548726235285,
120
+ "min": 2399.3548726235285,
121
+ "max": 14401.671409686685,
122
+ "count": 38
123
+ },
124
+ "SoccerTwos.Losses.PolicyLoss.mean": {
125
+ "value": 0.014131502931316693,
126
+ "min": 0.012572837203818684,
127
+ "max": 0.021434609943147127,
128
+ "count": 22
129
+ },
130
+ "SoccerTwos.Losses.PolicyLoss.sum": {
131
+ "value": 0.014131502931316693,
132
+ "min": 0.012572837203818684,
133
+ "max": 0.021434609943147127,
134
+ "count": 22
135
+ },
136
+ "SoccerTwos.Losses.ValueLoss.mean": {
137
+ "value": 1.864583230902402e-05,
138
+ "min": 1.6197918193938675e-05,
139
+ "max": 0.005484153927924732,
140
+ "count": 22
141
+ },
142
+ "SoccerTwos.Losses.ValueLoss.sum": {
143
+ "value": 1.864583230902402e-05,
144
+ "min": 1.6197918193938675e-05,
145
+ "max": 0.005484153927924732,
146
+ "count": 22
147
+ },
148
+ "SoccerTwos.Losses.BaselineLoss.mean": {
149
+ "value": 1.838993700099915e-05,
150
+ "min": 1.6894630971364676e-05,
151
+ "max": 0.005585892514015238,
152
+ "count": 22
153
+ },
154
+ "SoccerTwos.Losses.BaselineLoss.sum": {
155
+ "value": 1.838993700099915e-05,
156
+ "min": 1.6894630971364676e-05,
157
+ "max": 0.005585892514015238,
158
+ "count": 22
159
+ },
160
+ "SoccerTwos.Policy.LearningRate.mean": {
161
+ "value": 0.00025000000000000006,
162
+ "min": 0.00025000000000000006,
163
+ "max": 0.00025000000000000006,
164
+ "count": 22
165
+ },
166
+ "SoccerTwos.Policy.LearningRate.sum": {
167
+ "value": 0.00025000000000000006,
168
+ "min": 0.00025000000000000006,
169
+ "max": 0.00025000000000000006,
170
+ "count": 22
171
+ },
172
+ "SoccerTwos.Policy.Epsilon.mean": {
173
+ "value": 0.20000000000000007,
174
+ "min": 0.20000000000000004,
175
+ "max": 0.20000000000000007,
176
+ "count": 22
177
+ },
178
+ "SoccerTwos.Policy.Epsilon.sum": {
179
+ "value": 0.20000000000000007,
180
+ "min": 0.20000000000000004,
181
+ "max": 0.20000000000000007,
182
+ "count": 22
183
+ },
184
+ "SoccerTwos.Policy.Beta.mean": {
185
+ "value": 0.005000000000000001,
186
+ "min": 0.005000000000000001,
187
+ "max": 0.005000000000000001,
188
+ "count": 22
189
+ },
190
+ "SoccerTwos.Policy.Beta.sum": {
191
+ "value": 0.005000000000000001,
192
+ "min": 0.005000000000000001,
193
+ "max": 0.005000000000000001,
194
+ "count": 22
195
+ }
196
+ },
197
+ "metadata": {
198
+ "timer_format_version": "0.1.0",
199
+ "start_time_seconds": "1680349108",
200
+ "python_version": "3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC v.1929 64 bit (AMD64)]",
201
+ "command_line_arguments": "D:\\Reinforcement Learning\\rl\\Scripts\\mlagents-learn ./config/poca/SoccerTwos.yaml --env=./training-envs-executables/SoccerTwos/SoccerTwos.exe --run-id=SoccerTwos --no-graphics",
202
+ "mlagents_version": "0.31.0.dev0",
203
+ "mlagents_envs_version": "0.31.0.dev0",
204
+ "communication_protocol_version": "1.5.0",
205
+ "pytorch_version": "2.0.0+cpu",
206
+ "numpy_version": "1.21.2",
207
+ "end_time_seconds": "1680351077"
208
+ },
209
+ "total": 1969.1952964,
210
+ "count": 1,
211
+ "self": 0.8775162999997974,
212
+ "children": {
213
+ "run_training.setup": {
214
+ "total": 0.15629139999999975,
215
+ "count": 1,
216
+ "self": 0.15629139999999975
217
+ },
218
+ "TrainerController.start_learning": {
219
+ "total": 1968.1614887,
220
+ "count": 1,
221
+ "self": 1.063627699998733,
222
+ "children": {
223
+ "TrainerController._reset_env": {
224
+ "total": 8.731359299999973,
225
+ "count": 3,
226
+ "self": 8.731359299999973
227
+ },
228
+ "TrainerController.advance": {
229
+ "total": 1958.1863668000012,
230
+ "count": 32529,
231
+ "self": 1.0780150000102822,
232
+ "children": {
233
+ "env_step": {
234
+ "total": 859.9735563999992,
235
+ "count": 32529,
236
+ "self": 657.7527972000157,
237
+ "children": {
238
+ "SubprocessEnvManager._take_step": {
239
+ "total": 201.51243959999837,
240
+ "count": 32529,
241
+ "self": 6.474854899984706,
242
+ "children": {
243
+ "TorchPolicy.evaluate": {
244
+ "total": 195.03758470001367,
245
+ "count": 64570,
246
+ "self": 195.03758470001367
247
+ }
248
+ }
249
+ },
250
+ "workers": {
251
+ "total": 0.7083195999851277,
252
+ "count": 32529,
253
+ "self": 0.0,
254
+ "children": {
255
+ "worker_root": {
256
+ "total": 1957.6469396000057,
257
+ "count": 32529,
258
+ "is_parallel": true,
259
+ "self": 1433.2750806999984,
260
+ "children": {
261
+ "steps_from_proto": {
262
+ "total": 0.006452900000091688,
263
+ "count": 6,
264
+ "is_parallel": true,
265
+ "self": 0.001335399999842224,
266
+ "children": {
267
+ "_process_rank_one_or_two_observation": {
268
+ "total": 0.005117500000249464,
269
+ "count": 24,
270
+ "is_parallel": true,
271
+ "self": 0.005117500000249464
272
+ }
273
+ }
274
+ },
275
+ "UnityEnvironment.step": {
276
+ "total": 524.3654060000072,
277
+ "count": 32529,
278
+ "is_parallel": true,
279
+ "self": 27.51694840001403,
280
+ "children": {
281
+ "UnityEnvironment._generate_step_input": {
282
+ "total": 24.237560399998664,
283
+ "count": 32529,
284
+ "is_parallel": true,
285
+ "self": 24.237560399998664
286
+ },
287
+ "communicator.exchange": {
288
+ "total": 377.73999589998914,
289
+ "count": 32529,
290
+ "is_parallel": true,
291
+ "self": 377.73999589998914
292
+ },
293
+ "steps_from_proto": {
294
+ "total": 94.87090130000533,
295
+ "count": 65058,
296
+ "is_parallel": true,
297
+ "self": 18.556710100085965,
298
+ "children": {
299
+ "_process_rank_one_or_two_observation": {
300
+ "total": 76.31419119991936,
301
+ "count": 260232,
302
+ "is_parallel": true,
303
+ "self": 76.31419119991936
304
+ }
305
+ }
306
+ }
307
+ }
308
+ }
309
+ }
310
+ }
311
+ }
312
+ }
313
+ }
314
+ },
315
+ "trainer_advance": {
316
+ "total": 1097.1347953999916,
317
+ "count": 32529,
318
+ "self": 7.227372499996363,
319
+ "children": {
320
+ "process_trajectory": {
321
+ "total": 158.60332269999552,
322
+ "count": 32529,
323
+ "self": 158.31052479999565,
324
+ "children": {
325
+ "RLTrainer._checkpoint": {
326
+ "total": 0.2927978999998686,
327
+ "count": 1,
328
+ "self": 0.2927978999998686
329
+ }
330
+ }
331
+ },
332
+ "_update_policy": {
333
+ "total": 931.3041001999998,
334
+ "count": 22,
335
+ "self": 95.04696000000274,
336
+ "children": {
337
+ "TorchPOCAOptimizer.update": {
338
+ "total": 836.257140199997,
339
+ "count": 669,
340
+ "self": 836.257140199997
341
+ }
342
+ }
343
+ }
344
+ }
345
+ }
346
+ }
347
+ },
348
+ "TrainerController._save_models": {
349
+ "total": 0.18013490000021193,
350
+ "count": 1,
351
+ "self": 6.320000011328375e-05,
352
+ "children": {
353
+ "RLTrainer._checkpoint": {
354
+ "total": 0.18007170000009864,
355
+ "count": 1,
356
+ "self": 0.18007170000009864
357
+ }
358
+ }
359
+ }
360
+ }
361
+ }
362
+ }
363
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "SoccerTwos": {
3
+ "elo": 1199.6774363117643
4
+ },
5
+ "metadata": {
6
+ "stats_format_version": "0.3.0",
7
+ "mlagents_version": "0.31.0.dev0",
8
+ "torch_version": "2.0.0+cpu"
9
+ }
10
+ }