ThomasSimonini HF staff commited on
Commit
b857da0
1 Parent(s): f4d018f

Push to Hub

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: ThomasSimonini/poca-SoccerTwosTest3
29
+ 3. Step 2: Select your *.nn /*.onnx file
30
+ 4. Click on Watch the agent play 👀
31
+
SoccerTwos.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:338d462a06295a191dbae41370085164acfd620810a62ff012959bde7548cd34
3
+ size 1768747
SoccerTwos/SoccerTwos-28694.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:338d462a06295a191dbae41370085164acfd620810a62ff012959bde7548cd34
3
+ size 1768747
SoccerTwos/SoccerTwos-28694.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be96923972dea3c625b2f90c529e39d174b1e620b3c8f62179ac2a9f34b658cf
3
+ size 28429659
SoccerTwos/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac928c108d00292c86a5bc5cbd884c0a7b9ccf039db5aff4debe2af96ecdd2a4
3
+ size 28428927
SoccerTwos/events.out.tfevents.1675173178.Thomas.23232.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28eeace29592e804f08697fc503cc5b2ee77441da7c90ac7b0bff57f9296ac24
3
+ size 16590
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.0003, "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": 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}}}, "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": "SoccerTwos2", "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.0003
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: false
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: SoccerTwos2
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,335 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = 'C:/Users/simon/OneDrive/Documents/FINALTEST/ml-agents/training-envs-executables/SoccerTwos/SoccerTwos/SoccerTwos_Data/Managed'
2
+ Mono config path = 'C:/Users/simon/OneDrive/Documents/FINALTEST/ml-agents/training-envs-executables/SoccerTwos/SoccerTwos/MonoBleedingEdge/etc'
3
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
4
+ [Subsystems] Discovering subsystems at path C:/Users/simon/OneDrive/Documents/FINALTEST/ml-agents/training-envs-executables/SoccerTwos/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 0.270 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.767900 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
+ Setting up 8 worker threads for Enlighten.
55
+ Memory Statistics:
56
+ [ALLOC_TEMP_TLS] TLS Allocator
57
+ StackAllocators :
58
+ [ALLOC_TEMP_MAIN]
59
+ Peak usage frame count: [8.0 KB-16.0 KB]: 599 frames, [2.0 MB-4.0 MB]: 1 frames
60
+ Initial Block Size 4.0 MB
61
+ Current Block Size 4.0 MB
62
+ Peak Allocated Bytes 2.0 MB
63
+ Overflow Count 0
64
+ [ALLOC_TEMP_Loading.AsyncRead]
65
+ Initial Block Size 64.0 KB
66
+ Current Block Size 64.0 KB
67
+ Peak Allocated Bytes 432 B
68
+ Overflow Count 0
69
+ [ALLOC_TEMP_Loading.PreloadManager]
70
+ Initial Block Size 256.0 KB
71
+ Current Block Size 256.0 KB
72
+ Peak Allocated Bytes 67.1 KB
73
+ Overflow Count 4
74
+ [ALLOC_TEMP_Background Job.Worker 8]
75
+ Initial Block Size 32.0 KB
76
+ Current Block Size 32.0 KB
77
+ Peak Allocated Bytes 54 B
78
+ Overflow Count 0
79
+ [ALLOC_TEMP_Job.Worker 6]
80
+ Initial Block Size 256.0 KB
81
+ Current Block Size 256.0 KB
82
+ Peak Allocated Bytes 0 B
83
+ Overflow Count 0
84
+ [ALLOC_TEMP_Job.Worker 0]
85
+ Initial Block Size 256.0 KB
86
+ Current Block Size 256.0 KB
87
+ Peak Allocated Bytes 0 B
88
+ Overflow Count 0
89
+ [ALLOC_TEMP_Background Job.Worker 10]
90
+ Initial Block Size 32.0 KB
91
+ Current Block Size 32.0 KB
92
+ Peak Allocated Bytes 54 B
93
+ Overflow Count 0
94
+ [ALLOC_TEMP_Background Job.Worker 9]
95
+ Initial Block Size 32.0 KB
96
+ Current Block Size 32.0 KB
97
+ Peak Allocated Bytes 54 B
98
+ Overflow Count 0
99
+ [ALLOC_TEMP_Job.Worker 5]
100
+ Initial Block Size 256.0 KB
101
+ Current Block Size 256.0 KB
102
+ Peak Allocated Bytes 0 B
103
+ Overflow Count 0
104
+ [ALLOC_TEMP_Background Job.Worker 14]
105
+ Initial Block Size 32.0 KB
106
+ Current Block Size 32.0 KB
107
+ Peak Allocated Bytes 54 B
108
+ Overflow Count 0
109
+ [ALLOC_TEMP_Background Job.Worker 6]
110
+ Initial Block Size 32.0 KB
111
+ Current Block Size 32.0 KB
112
+ Peak Allocated Bytes 54 B
113
+ Overflow Count 0
114
+ [ALLOC_TEMP_Job.Worker 4]
115
+ Initial Block Size 256.0 KB
116
+ Current Block Size 256.0 KB
117
+ Peak Allocated Bytes 0 B
118
+ Overflow Count 0
119
+ [ALLOC_TEMP_Job.Worker 14]
120
+ Initial Block Size 256.0 KB
121
+ Current Block Size 256.0 KB
122
+ Peak Allocated Bytes 54 B
123
+ Overflow Count 0
124
+ [ALLOC_TEMP_Job.Worker 3]
125
+ Initial Block Size 256.0 KB
126
+ Current Block Size 256.0 KB
127
+ Peak Allocated Bytes 0 B
128
+ Overflow Count 0
129
+ [ALLOC_TEMP_Job.Worker 13]
130
+ Initial Block Size 256.0 KB
131
+ Current Block Size 256.0 KB
132
+ Peak Allocated Bytes 54 B
133
+ Overflow Count 0
134
+ [ALLOC_TEMP_Background Job.Worker 12]
135
+ Initial Block Size 32.0 KB
136
+ Current Block Size 32.0 KB
137
+ Peak Allocated Bytes 54 B
138
+ Overflow Count 0
139
+ [ALLOC_TEMP_EnlightenWorker] x 8
140
+ Initial Block Size 64.0 KB
141
+ Current Block Size 64.0 KB
142
+ Peak Allocated Bytes 54 B
143
+ Overflow Count 0
144
+ [ALLOC_TEMP_Background Job.Worker 15]
145
+ Initial Block Size 32.0 KB
146
+ Current Block Size 32.0 KB
147
+ Peak Allocated Bytes 54 B
148
+ Overflow Count 0
149
+ [ALLOC_TEMP_Background Job.Worker 1]
150
+ Initial Block Size 32.0 KB
151
+ Current Block Size 32.0 KB
152
+ Peak Allocated Bytes 54 B
153
+ Overflow Count 0
154
+ [ALLOC_TEMP_Background Job.Worker 2]
155
+ Initial Block Size 32.0 KB
156
+ Current Block Size 32.0 KB
157
+ Peak Allocated Bytes 54 B
158
+ Overflow Count 0
159
+ [ALLOC_TEMP_Background Job.Worker 7]
160
+ Initial Block Size 32.0 KB
161
+ Current Block Size 32.0 KB
162
+ Peak Allocated Bytes 54 B
163
+ Overflow Count 0
164
+ [ALLOC_TEMP_AssetGarbageCollectorHelper] x 15
165
+ Initial Block Size 64.0 KB
166
+ Current Block Size 64.0 KB
167
+ Peak Allocated Bytes 0 B
168
+ Overflow Count 0
169
+ [ALLOC_TEMP_Background Job.Worker 5]
170
+ Initial Block Size 32.0 KB
171
+ Current Block Size 32.0 KB
172
+ Peak Allocated Bytes 54 B
173
+ Overflow Count 0
174
+ [ALLOC_TEMP_Job.Worker 9]
175
+ Initial Block Size 256.0 KB
176
+ Current Block Size 256.0 KB
177
+ Peak Allocated Bytes 0 B
178
+ Overflow Count 0
179
+ [ALLOC_TEMP_Background Job.Worker 13]
180
+ Initial Block Size 32.0 KB
181
+ Current Block Size 32.0 KB
182
+ Peak Allocated Bytes 54 B
183
+ Overflow Count 0
184
+ [ALLOC_TEMP_Job.Worker 8]
185
+ Initial Block Size 256.0 KB
186
+ Current Block Size 256.0 KB
187
+ Peak Allocated Bytes 0 B
188
+ Overflow Count 0
189
+ [ALLOC_TEMP_Job.Worker 7]
190
+ Initial Block Size 256.0 KB
191
+ Current Block Size 256.0 KB
192
+ Peak Allocated Bytes 0 B
193
+ Overflow Count 0
194
+ [ALLOC_TEMP_Job.Worker 1]
195
+ Initial Block Size 256.0 KB
196
+ Current Block Size 256.0 KB
197
+ Peak Allocated Bytes 0 B
198
+ Overflow Count 0
199
+ [ALLOC_TEMP_Job.Worker 2]
200
+ Initial Block Size 256.0 KB
201
+ Current Block Size 256.0 KB
202
+ Peak Allocated Bytes 0 B
203
+ Overflow Count 0
204
+ [ALLOC_TEMP_Background Job.Worker 3]
205
+ Initial Block Size 32.0 KB
206
+ Current Block Size 32.0 KB
207
+ Peak Allocated Bytes 54 B
208
+ Overflow Count 0
209
+ [ALLOC_TEMP_Background Job.Worker 11]
210
+ Initial Block Size 32.0 KB
211
+ Current Block Size 32.0 KB
212
+ Peak Allocated Bytes 54 B
213
+ Overflow Count 0
214
+ [ALLOC_TEMP_Job.Worker 10]
215
+ Initial Block Size 256.0 KB
216
+ Current Block Size 256.0 KB
217
+ Peak Allocated Bytes 54 B
218
+ Overflow Count 0
219
+ [ALLOC_TEMP_Background Job.Worker 0]
220
+ Initial Block Size 32.0 KB
221
+ Current Block Size 32.0 KB
222
+ Peak Allocated Bytes 54 B
223
+ Overflow Count 0
224
+ [ALLOC_TEMP_Job.Worker 11]
225
+ Initial Block Size 256.0 KB
226
+ Current Block Size 256.0 KB
227
+ Peak Allocated Bytes 0.8 KB
228
+ Overflow Count 0
229
+ [ALLOC_TEMP_Job.Worker 12]
230
+ Initial Block Size 256.0 KB
231
+ Current Block Size 256.0 KB
232
+ Peak Allocated Bytes 54 B
233
+ Overflow Count 0
234
+ [ALLOC_TEMP_Background Job.Worker 4]
235
+ Initial Block Size 32.0 KB
236
+ Current Block Size 32.0 KB
237
+ Peak Allocated Bytes 54 B
238
+ Overflow Count 0
239
+ [ALLOC_TEMP_BatchDeleteObjects]
240
+ Initial Block Size 64.0 KB
241
+ Current Block Size 64.0 KB
242
+ Peak Allocated Bytes 54 B
243
+ Overflow Count 0
244
+ [ALLOC_DEFAULT] Dual Thread Allocator
245
+ Peak main deferred allocation count 3
246
+ [ALLOC_BUCKET]
247
+ Large Block size 4.0 MB
248
+ Used Block count 1
249
+ Peak Allocated bytes 0.9 MB
250
+ [ALLOC_DEFAULT_MAIN]
251
+ Peak usage frame count: [4.0 MB-8.0 MB]: 600 frames
252
+ Requested Block Size 16.0 MB
253
+ Peak Block count 1
254
+ Peak Allocated memory 5.1 MB
255
+ Peak Large allocation bytes 0 B
256
+ [ALLOC_DEFAULT_THREAD]
257
+ Peak usage frame count: [16.0 MB-32.0 MB]: 600 frames
258
+ Requested Block Size 16.0 MB
259
+ Peak Block count 1
260
+ Peak Allocated memory 17.1 MB
261
+ Peak Large allocation bytes 16.0 MB
262
+ [ALLOC_TEMP_JOB_1_FRAME]
263
+ Initial Block Size 2.0 MB
264
+ Used Block Count 1
265
+ Overflow Count (too large) 0
266
+ Overflow Count (full) 0
267
+ [ALLOC_TEMP_JOB_2_FRAMES]
268
+ Initial Block Size 2.0 MB
269
+ Used Block Count 1
270
+ Overflow Count (too large) 0
271
+ Overflow Count (full) 0
272
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
273
+ Initial Block Size 2.0 MB
274
+ Used Block Count 2
275
+ Overflow Count (too large) 0
276
+ Overflow Count (full) 0
277
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
278
+ Initial Block Size 1.0 MB
279
+ Used Block Count 3
280
+ Overflow Count (too large) 0
281
+ Overflow Count (full) 0
282
+ [ALLOC_GFX] Dual Thread Allocator
283
+ Peak main deferred allocation count 0
284
+ [ALLOC_BUCKET]
285
+ Large Block size 4.0 MB
286
+ Used Block count 1
287
+ Peak Allocated bytes 0.9 MB
288
+ [ALLOC_GFX_MAIN]
289
+ Peak usage frame count: [32.0 KB-64.0 KB]: 599 frames, [64.0 KB-128.0 KB]: 1 frames
290
+ Requested Block Size 16.0 MB
291
+ Peak Block count 1
292
+ Peak Allocated memory 65.6 KB
293
+ Peak Large allocation bytes 0 B
294
+ [ALLOC_GFX_THREAD]
295
+ Peak usage frame count: [128.0 KB-256.0 KB]: 600 frames
296
+ Requested Block Size 16.0 MB
297
+ Peak Block count 1
298
+ Peak Allocated memory 173.6 KB
299
+ Peak Large allocation bytes 0 B
300
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
301
+ Peak main deferred allocation count 2
302
+ [ALLOC_BUCKET]
303
+ Large Block size 4.0 MB
304
+ Used Block count 1
305
+ Peak Allocated bytes 0.9 MB
306
+ [ALLOC_CACHEOBJECTS_MAIN]
307
+ Peak usage frame count: [0.5 MB-1.0 MB]: 600 frames
308
+ Requested Block Size 4.0 MB
309
+ Peak Block count 1
310
+ Peak Allocated memory 0.6 MB
311
+ Peak Large allocation bytes 0 B
312
+ [ALLOC_CACHEOBJECTS_THREAD]
313
+ Peak usage frame count: [0.5 MB-1.0 MB]: 599 frames, [2.0 MB-4.0 MB]: 1 frames
314
+ Requested Block Size 4.0 MB
315
+ Peak Block count 1
316
+ Peak Allocated memory 3.2 MB
317
+ Peak Large allocation bytes 0 B
318
+ [ALLOC_TYPETREE] Dual Thread Allocator
319
+ Peak main deferred allocation count 0
320
+ [ALLOC_BUCKET]
321
+ Large Block size 4.0 MB
322
+ Used Block count 1
323
+ Peak Allocated bytes 0.9 MB
324
+ [ALLOC_TYPETREE_MAIN]
325
+ Peak usage frame count: [0-1.0 KB]: 600 frames
326
+ Requested Block Size 2.0 MB
327
+ Peak Block count 1
328
+ Peak Allocated memory 1.0 KB
329
+ Peak Large allocation bytes 0 B
330
+ [ALLOC_TYPETREE_THREAD]
331
+ Peak usage frame count: [1.0 KB-2.0 KB]: 599 frames, [2.0 KB-4.0 KB]: 1 frames
332
+ Requested Block Size 2.0 MB
333
+ Peak Block count 1
334
+ Peak Allocated memory 2.2 KB
335
+ Peak Large allocation bytes 0 B
run_logs/timers.json ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "gauges": {
4
+ "SoccerTwos.Policy.Entropy.mean": {
5
+ "value": 3.295691967010498,
6
+ "min": 3.295689344406128,
7
+ "max": 3.295691967010498,
8
+ "count": 2
9
+ },
10
+ "SoccerTwos.Policy.Entropy.sum": {
11
+ "value": 105462.140625,
12
+ "min": 105462.0625,
13
+ "max": 105462.140625,
14
+ "count": 2
15
+ },
16
+ "SoccerTwos.Environment.EpisodeLength.mean": {
17
+ "value": 905.625,
18
+ "min": 885.75,
19
+ "max": 905.625,
20
+ "count": 2
21
+ },
22
+ "SoccerTwos.Environment.EpisodeLength.sum": {
23
+ "value": 28980.0,
24
+ "min": 28344.0,
25
+ "max": 28980.0,
26
+ "count": 2
27
+ },
28
+ "SoccerTwos.Self-play.ELO.mean": {
29
+ "value": 1199.5057305918085,
30
+ "min": 1199.2507195558546,
31
+ "max": 1199.5057305918085,
32
+ "count": 2
33
+ },
34
+ "SoccerTwos.Self-play.ELO.sum": {
35
+ "value": 4798.022922367234,
36
+ "min": 2398.5014391117093,
37
+ "max": 4798.022922367234,
38
+ "count": 2
39
+ },
40
+ "SoccerTwos.Step.mean": {
41
+ "value": 19694.0,
42
+ "min": 9188.0,
43
+ "max": 19694.0,
44
+ "count": 2
45
+ },
46
+ "SoccerTwos.Step.sum": {
47
+ "value": 19694.0,
48
+ "min": 9188.0,
49
+ "max": 19694.0,
50
+ "count": 2
51
+ },
52
+ "SoccerTwos.Policy.ExtrinsicBaselineEstimate.mean": {
53
+ "value": -0.07060559839010239,
54
+ "min": -0.07060559839010239,
55
+ "max": -0.07060343772172928,
56
+ "count": 2
57
+ },
58
+ "SoccerTwos.Policy.ExtrinsicBaselineEstimate.sum": {
59
+ "value": -0.847267210483551,
60
+ "min": -0.847267210483551,
61
+ "max": -0.7766377925872803,
62
+ "count": 2
63
+ },
64
+ "SoccerTwos.Policy.ExtrinsicValueEstimate.mean": {
65
+ "value": -0.07060328871011734,
66
+ "min": -0.07060345262289047,
67
+ "max": -0.07060328871011734,
68
+ "count": 2
69
+ },
70
+ "SoccerTwos.Policy.ExtrinsicValueEstimate.sum": {
71
+ "value": -0.8472394943237305,
72
+ "min": -0.8472394943237305,
73
+ "max": -0.7766379714012146,
74
+ "count": 2
75
+ },
76
+ "SoccerTwos.Environment.CumulativeReward.mean": {
77
+ "value": 0.0,
78
+ "min": 0.0,
79
+ "max": 0.0,
80
+ "count": 2
81
+ },
82
+ "SoccerTwos.Environment.CumulativeReward.sum": {
83
+ "value": 0.0,
84
+ "min": 0.0,
85
+ "max": 0.0,
86
+ "count": 2
87
+ },
88
+ "SoccerTwos.Policy.ExtrinsicReward.mean": {
89
+ "value": -0.10089999934037526,
90
+ "min": -0.18181818181818182,
91
+ "max": -0.10089999934037526,
92
+ "count": 2
93
+ },
94
+ "SoccerTwos.Policy.ExtrinsicReward.sum": {
95
+ "value": -1.2107999920845032,
96
+ "min": -2.0,
97
+ "max": -1.2107999920845032,
98
+ "count": 2
99
+ },
100
+ "SoccerTwos.Environment.GroupCumulativeReward.mean": {
101
+ "value": -0.10089999934037526,
102
+ "min": -0.18181818181818182,
103
+ "max": -0.10089999934037526,
104
+ "count": 2
105
+ },
106
+ "SoccerTwos.Environment.GroupCumulativeReward.sum": {
107
+ "value": -1.2107999920845032,
108
+ "min": -2.0,
109
+ "max": -1.2107999920845032,
110
+ "count": 2
111
+ },
112
+ "SoccerTwos.IsTraining.mean": {
113
+ "value": 1.0,
114
+ "min": 1.0,
115
+ "max": 1.0,
116
+ "count": 2
117
+ },
118
+ "SoccerTwos.IsTraining.sum": {
119
+ "value": 1.0,
120
+ "min": 1.0,
121
+ "max": 1.0,
122
+ "count": 2
123
+ }
124
+ },
125
+ "metadata": {
126
+ "timer_format_version": "0.1.0",
127
+ "start_time_seconds": "1675173173",
128
+ "python_version": "3.8.16 (default, Jan 17 2023, 22:25:28) [MSC v.1916 64 bit (AMD64)]",
129
+ "command_line_arguments": "C:\\Users\\simon\\Anaconda3\\envs\\rl2\\Scripts\\mlagents-learn ./config/poca/SoccerTwos.yaml --env=./training-envs-executables/SoccerTwos/SoccerTwos.exe --run-id=SoccerTwos2 --no-graphics",
130
+ "mlagents_version": "0.31.0.dev0",
131
+ "mlagents_envs_version": "0.31.0.dev0",
132
+ "communication_protocol_version": "1.5.0",
133
+ "pytorch_version": "1.13.1+cpu",
134
+ "numpy_version": "1.21.2",
135
+ "end_time_seconds": "1675173265"
136
+ },
137
+ "total": 91.9008522,
138
+ "count": 1,
139
+ "self": 0.06464710000000196,
140
+ "children": {
141
+ "run_training.setup": {
142
+ "total": 0.0912917000000002,
143
+ "count": 1,
144
+ "self": 0.0912917000000002
145
+ },
146
+ "TrainerController.start_learning": {
147
+ "total": 91.7449134,
148
+ "count": 1,
149
+ "self": 0.07356070000012949,
150
+ "children": {
151
+ "TrainerController._reset_env": {
152
+ "total": 4.1730279,
153
+ "count": 1,
154
+ "self": 4.1730279
155
+ },
156
+ "TrainerController.advance": {
157
+ "total": 87.30454589999988,
158
+ "count": 2004,
159
+ "self": 0.05573020000009876,
160
+ "children": {
161
+ "env_step": {
162
+ "total": 42.029193400000004,
163
+ "count": 2004,
164
+ "self": 33.07110630000009,
165
+ "children": {
166
+ "SubprocessEnvManager._take_step": {
167
+ "total": 8.923475299999968,
168
+ "count": 2004,
169
+ "self": 0.37842490000002016,
170
+ "children": {
171
+ "TorchPolicy.evaluate": {
172
+ "total": 8.545050399999948,
173
+ "count": 4000,
174
+ "self": 8.545050399999948
175
+ }
176
+ }
177
+ },
178
+ "workers": {
179
+ "total": 0.0346117999999489,
180
+ "count": 2004,
181
+ "self": 0.0,
182
+ "children": {
183
+ "worker_root": {
184
+ "total": 49.138396499999864,
185
+ "count": 2004,
186
+ "is_parallel": true,
187
+ "self": 22.7424602999997,
188
+ "children": {
189
+ "steps_from_proto": {
190
+ "total": 0.002005699999999777,
191
+ "count": 2,
192
+ "is_parallel": true,
193
+ "self": 0.00038040000000094665,
194
+ "children": {
195
+ "_process_rank_one_or_two_observation": {
196
+ "total": 0.0016252999999988305,
197
+ "count": 8,
198
+ "is_parallel": true,
199
+ "self": 0.0016252999999988305
200
+ }
201
+ }
202
+ },
203
+ "UnityEnvironment.step": {
204
+ "total": 26.393930500000167,
205
+ "count": 2004,
206
+ "is_parallel": true,
207
+ "self": 1.3016270000001384,
208
+ "children": {
209
+ "UnityEnvironment._generate_step_input": {
210
+ "total": 1.5905873999999809,
211
+ "count": 2004,
212
+ "is_parallel": true,
213
+ "self": 1.5905873999999809
214
+ },
215
+ "communicator.exchange": {
216
+ "total": 18.730602399999967,
217
+ "count": 2004,
218
+ "is_parallel": true,
219
+ "self": 18.730602399999967
220
+ },
221
+ "steps_from_proto": {
222
+ "total": 4.77111370000008,
223
+ "count": 4008,
224
+ "is_parallel": true,
225
+ "self": 0.9033070000000754,
226
+ "children": {
227
+ "_process_rank_one_or_two_observation": {
228
+ "total": 3.8678067000000045,
229
+ "count": 16032,
230
+ "is_parallel": true,
231
+ "self": 3.8678067000000045
232
+ }
233
+ }
234
+ }
235
+ }
236
+ }
237
+ }
238
+ }
239
+ }
240
+ }
241
+ }
242
+ },
243
+ "trainer_advance": {
244
+ "total": 45.21962229999978,
245
+ "count": 2004,
246
+ "self": 0.25743169999990556,
247
+ "children": {
248
+ "process_trajectory": {
249
+ "total": 10.384502399999864,
250
+ "count": 2004,
251
+ "self": 10.384502399999864
252
+ },
253
+ "_update_policy": {
254
+ "total": 34.577688200000004,
255
+ "count": 1,
256
+ "self": 4.725579899999985,
257
+ "children": {
258
+ "TorchPOCAOptimizer.update": {
259
+ "total": 29.85210830000002,
260
+ "count": 19,
261
+ "self": 29.85210830000002
262
+ }
263
+ }
264
+ }
265
+ }
266
+ }
267
+ }
268
+ },
269
+ "trainer_threads": {
270
+ "total": 2.3999999996249244e-06,
271
+ "count": 1,
272
+ "self": 2.3999999996249244e-06
273
+ },
274
+ "TrainerController._save_models": {
275
+ "total": 0.19377649999999846,
276
+ "count": 1,
277
+ "self": 0.0029433000000125276,
278
+ "children": {
279
+ "RLTrainer._checkpoint": {
280
+ "total": 0.19083319999998594,
281
+ "count": 1,
282
+ "self": 0.19083319999998594
283
+ }
284
+ }
285
+ }
286
+ }
287
+ }
288
+ }
289
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "SoccerTwos": {
3
+ "elo": 1199.0071459849012,
4
+ "checkpoints": [
5
+ {
6
+ "steps": 28694,
7
+ "file_path": "results\\SoccerTwos2\\SoccerTwos\\SoccerTwos-28694.onnx",
8
+ "reward": null,
9
+ "creation_time": 1675173265.775545,
10
+ "auxillary_file_paths": [
11
+ "results\\SoccerTwos2\\SoccerTwos\\SoccerTwos-28694.pt"
12
+ ]
13
+ }
14
+ ],
15
+ "final_checkpoint": {
16
+ "steps": 28694,
17
+ "file_path": "results\\SoccerTwos2\\SoccerTwos.onnx",
18
+ "reward": null,
19
+ "creation_time": 1675173265.775545,
20
+ "auxillary_file_paths": [
21
+ "results\\SoccerTwos2\\SoccerTwos\\SoccerTwos-28694.pt"
22
+ ]
23
+ }
24
+ },
25
+ "metadata": {
26
+ "stats_format_version": "0.3.0",
27
+ "mlagents_version": "0.31.0.dev0",
28
+ "torch_version": "1.13.1+cpu"
29
+ }
30
+ }