Juan Francisco Kurucz commited on
Commit
898480a
1 Parent(s): 7510914

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: juanfkurucz/poca-SoccerTwos
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:729839a37a1a5d5a9a93c7e5a9d7b4246d5247537d6424392398138c365860f5
3
+ size 1766874
SoccerTwos/SoccerTwos-11928.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:729839a37a1a5d5a9a93c7e5a9d7b4246d5247537d6424392398138c365860f5
3
+ size 1766874
SoccerTwos/SoccerTwos-11928.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d6f92b72cb563be5e420fd60ad2dc4fe0e63767bb8a2bc9c735977e10d9b473
3
+ size 9478991
SoccerTwos/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:795e2eb0d52a5ca9c6106e175bdd44dd6e3ef259e224a84d708016864ee14a87
3
+ size 9478763
SoccerTwos/events.out.tfevents.1684774207.DESKTOP-KH84B4U.6160.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d553937da86f39a00438e983189742989af41d22c1eaf98447921ef8d4d7bf97
3
+ size 11279
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": 5000, "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": ".\\\\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": true, "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: 5000
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: .\\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: true
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,366 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = 'D:/Workspace/AI/huggingface/rlhf-course/ml-agents/SoccerTwos/SoccerTwos_Data/Managed'
2
+ Mono config path = 'D:/Workspace/AI/huggingface/rlhf-course/ml-agents/SoccerTwos/MonoBleedingEdge/etc'
3
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
4
+ [Subsystems] Discovering subsystems at path D:/Workspace/AI/huggingface/rlhf-course/ml-agents/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.059 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.472100 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
+ Setting up 12 worker threads for Enlighten.
46
+ Memory Statistics:
47
+ [ALLOC_TEMP_TLS] TLS Allocator
48
+ StackAllocators :
49
+ [ALLOC_TEMP_MAIN]
50
+ Peak usage frame count: [8.0 KB-16.0 KB]: 299 frames, [2.0 MB-4.0 MB]: 1 frames
51
+ Initial Block Size 4.0 MB
52
+ Current Block Size 4.0 MB
53
+ Peak Allocated Bytes 2.0 MB
54
+ Overflow Count 0
55
+ [ALLOC_TEMP_Job.Worker 18]
56
+ Initial Block Size 256.0 KB
57
+ Current Block Size 256.0 KB
58
+ Peak Allocated Bytes 54 B
59
+ Overflow Count 0
60
+ [ALLOC_TEMP_Loading.PreloadManager]
61
+ Initial Block Size 256.0 KB
62
+ Current Block Size 256.0 KB
63
+ Peak Allocated Bytes 67.1 KB
64
+ Overflow Count 4
65
+ [ALLOC_TEMP_Background Job.Worker 8]
66
+ Initial Block Size 32.0 KB
67
+ Current Block Size 32.0 KB
68
+ Peak Allocated Bytes 54 B
69
+ Overflow Count 0
70
+ [ALLOC_TEMP_Background Job.Worker 10]
71
+ Initial Block Size 32.0 KB
72
+ Current Block Size 32.0 KB
73
+ Peak Allocated Bytes 54 B
74
+ Overflow Count 0
75
+ [ALLOC_TEMP_Job.Worker 16]
76
+ Initial Block Size 256.0 KB
77
+ Current Block Size 256.0 KB
78
+ Peak Allocated Bytes 54 B
79
+ Overflow Count 0
80
+ [ALLOC_TEMP_Background Job.Worker 6]
81
+ Initial Block Size 32.0 KB
82
+ Current Block Size 32.0 KB
83
+ Peak Allocated Bytes 54 B
84
+ Overflow Count 0
85
+ [ALLOC_TEMP_Job.Worker 4]
86
+ Initial Block Size 256.0 KB
87
+ Current Block Size 256.0 KB
88
+ Peak Allocated Bytes 0 B
89
+ Overflow Count 0
90
+ [ALLOC_TEMP_Job.Worker 17]
91
+ Initial Block Size 256.0 KB
92
+ Current Block Size 256.0 KB
93
+ Peak Allocated Bytes 54 B
94
+ Overflow Count 0
95
+ [ALLOC_TEMP_Job.Worker 14]
96
+ Initial Block Size 256.0 KB
97
+ Current Block Size 256.0 KB
98
+ Peak Allocated Bytes 54 B
99
+ Overflow Count 0
100
+ [ALLOC_TEMP_Job.Worker 3]
101
+ Initial Block Size 256.0 KB
102
+ Current Block Size 256.0 KB
103
+ Peak Allocated Bytes 0 B
104
+ Overflow Count 0
105
+ [ALLOC_TEMP_Background Job.Worker 12]
106
+ Initial Block Size 32.0 KB
107
+ Current Block Size 32.0 KB
108
+ Peak Allocated Bytes 54 B
109
+ Overflow Count 0
110
+ [ALLOC_TEMP_Background Job.Worker 1]
111
+ Initial Block Size 32.0 KB
112
+ Current Block Size 32.0 KB
113
+ Peak Allocated Bytes 54 B
114
+ Overflow Count 0
115
+ [ALLOC_TEMP_AssetGarbageCollectorHelper] x 23
116
+ Initial Block Size 64.0 KB
117
+ Current Block Size 64.0 KB
118
+ Peak Allocated Bytes 0 B
119
+ Overflow Count 0
120
+ [ALLOC_TEMP_Background Job.Worker 5]
121
+ Initial Block Size 32.0 KB
122
+ Current Block Size 32.0 KB
123
+ Peak Allocated Bytes 54 B
124
+ Overflow Count 0
125
+ [ALLOC_TEMP_Background Job.Worker 13]
126
+ Initial Block Size 32.0 KB
127
+ Current Block Size 32.0 KB
128
+ Peak Allocated Bytes 54 B
129
+ Overflow Count 0
130
+ [ALLOC_TEMP_Background Job.Worker 11]
131
+ Initial Block Size 32.0 KB
132
+ Current Block Size 32.0 KB
133
+ Peak Allocated Bytes 54 B
134
+ Overflow Count 0
135
+ [ALLOC_TEMP_Job.Worker 2]
136
+ Initial Block Size 256.0 KB
137
+ Current Block Size 256.0 KB
138
+ Peak Allocated Bytes 0 B
139
+ Overflow Count 0
140
+ [ALLOC_TEMP_Background Job.Worker 3]
141
+ Initial Block Size 32.0 KB
142
+ Current Block Size 32.0 KB
143
+ Peak Allocated Bytes 54 B
144
+ Overflow Count 0
145
+ [ALLOC_TEMP_Background Job.Worker 0]
146
+ Initial Block Size 32.0 KB
147
+ Current Block Size 32.0 KB
148
+ Peak Allocated Bytes 54 B
149
+ Overflow Count 0
150
+ [ALLOC_TEMP_Job.Worker 20]
151
+ Initial Block Size 256.0 KB
152
+ Current Block Size 256.0 KB
153
+ Peak Allocated Bytes 54 B
154
+ Overflow Count 0
155
+ [ALLOC_TEMP_Job.Worker 11]
156
+ Initial Block Size 256.0 KB
157
+ Current Block Size 256.0 KB
158
+ Peak Allocated Bytes 54 B
159
+ Overflow Count 0
160
+ [ALLOC_TEMP_Background Job.Worker 4]
161
+ Initial Block Size 32.0 KB
162
+ Current Block Size 32.0 KB
163
+ Peak Allocated Bytes 54 B
164
+ Overflow Count 0
165
+ [ALLOC_TEMP_BatchDeleteObjects]
166
+ Initial Block Size 64.0 KB
167
+ Current Block Size 64.0 KB
168
+ Peak Allocated Bytes 54 B
169
+ Overflow Count 0
170
+ [ALLOC_TEMP_Job.Worker 6]
171
+ Initial Block Size 256.0 KB
172
+ Current Block Size 256.0 KB
173
+ Peak Allocated Bytes 0 B
174
+ Overflow Count 0
175
+ [ALLOC_TEMP_Job.Worker 0]
176
+ Initial Block Size 256.0 KB
177
+ Current Block Size 256.0 KB
178
+ Peak Allocated Bytes 0.8 KB
179
+ Overflow Count 0
180
+ [ALLOC_TEMP_Job.Worker 21]
181
+ Initial Block Size 256.0 KB
182
+ Current Block Size 256.0 KB
183
+ Peak Allocated Bytes 54 B
184
+ Overflow Count 0
185
+ [ALLOC_TEMP_Job.Worker 5]
186
+ Initial Block Size 256.0 KB
187
+ Current Block Size 256.0 KB
188
+ Peak Allocated Bytes 0 B
189
+ Overflow Count 0
190
+ [ALLOC_TEMP_Background Job.Worker 14]
191
+ Initial Block Size 32.0 KB
192
+ Current Block Size 32.0 KB
193
+ Peak Allocated Bytes 54 B
194
+ Overflow Count 0
195
+ [ALLOC_TEMP_Background Job.Worker 9]
196
+ Initial Block Size 32.0 KB
197
+ Current Block Size 32.0 KB
198
+ Peak Allocated Bytes 54 B
199
+ Overflow Count 0
200
+ [ALLOC_TEMP_Job.Worker 13]
201
+ Initial Block Size 256.0 KB
202
+ Current Block Size 256.0 KB
203
+ Peak Allocated Bytes 54 B
204
+ Overflow Count 0
205
+ [ALLOC_TEMP_EnlightenWorker] x 12
206
+ Initial Block Size 64.0 KB
207
+ Current Block Size 64.0 KB
208
+ Peak Allocated Bytes 54 B
209
+ Overflow Count 0
210
+ [ALLOC_TEMP_Background Job.Worker 15]
211
+ Initial Block Size 32.0 KB
212
+ Current Block Size 32.0 KB
213
+ Peak Allocated Bytes 54 B
214
+ Overflow Count 0
215
+ [ALLOC_TEMP_Background Job.Worker 2]
216
+ Initial Block Size 32.0 KB
217
+ Current Block Size 32.0 KB
218
+ Peak Allocated Bytes 54 B
219
+ Overflow Count 0
220
+ [ALLOC_TEMP_Background Job.Worker 7]
221
+ Initial Block Size 32.0 KB
222
+ Current Block Size 32.0 KB
223
+ Peak Allocated Bytes 54 B
224
+ Overflow Count 0
225
+ [ALLOC_TEMP_Job.Worker 22]
226
+ Initial Block Size 256.0 KB
227
+ Current Block Size 256.0 KB
228
+ Peak Allocated Bytes 54 B
229
+ Overflow Count 0
230
+ [ALLOC_TEMP_Job.Worker 9]
231
+ Initial Block Size 256.0 KB
232
+ Current Block Size 256.0 KB
233
+ Peak Allocated Bytes 0 B
234
+ Overflow Count 0
235
+ [ALLOC_TEMP_Job.Worker 8]
236
+ Initial Block Size 256.0 KB
237
+ Current Block Size 256.0 KB
238
+ Peak Allocated Bytes 0 B
239
+ Overflow Count 0
240
+ [ALLOC_TEMP_Job.Worker 7]
241
+ Initial Block Size 256.0 KB
242
+ Current Block Size 256.0 KB
243
+ Peak Allocated Bytes 0 B
244
+ Overflow Count 0
245
+ [ALLOC_TEMP_Job.Worker 1]
246
+ Initial Block Size 256.0 KB
247
+ Current Block Size 256.0 KB
248
+ Peak Allocated Bytes 0 B
249
+ Overflow Count 0
250
+ [ALLOC_TEMP_Job.Worker 10]
251
+ Initial Block Size 256.0 KB
252
+ Current Block Size 256.0 KB
253
+ Peak Allocated Bytes 54 B
254
+ Overflow Count 0
255
+ [ALLOC_TEMP_Job.Worker 15]
256
+ Initial Block Size 256.0 KB
257
+ Current Block Size 256.0 KB
258
+ Peak Allocated Bytes 54 B
259
+ Overflow Count 0
260
+ [ALLOC_TEMP_Job.Worker 12]
261
+ Initial Block Size 256.0 KB
262
+ Current Block Size 256.0 KB
263
+ Peak Allocated Bytes 54 B
264
+ Overflow Count 0
265
+ [ALLOC_TEMP_Job.Worker 19]
266
+ Initial Block Size 256.0 KB
267
+ Current Block Size 256.0 KB
268
+ Peak Allocated Bytes 54 B
269
+ Overflow Count 0
270
+ [ALLOC_TEMP_Loading.AsyncRead]
271
+ Initial Block Size 64.0 KB
272
+ Current Block Size 64.0 KB
273
+ Peak Allocated Bytes 309 B
274
+ Overflow Count 0
275
+ [ALLOC_DEFAULT] Dual Thread Allocator
276
+ Peak main deferred allocation count 4
277
+ [ALLOC_BUCKET]
278
+ Large Block size 4.0 MB
279
+ Used Block count 1
280
+ Peak Allocated bytes 0.9 MB
281
+ [ALLOC_DEFAULT_MAIN]
282
+ Peak usage frame count: [4.0 MB-8.0 MB]: 300 frames
283
+ Requested Block Size 16.0 MB
284
+ Peak Block count 1
285
+ Peak Allocated memory 5.2 MB
286
+ Peak Large allocation bytes 0 B
287
+ [ALLOC_DEFAULT_THREAD]
288
+ Peak usage frame count: [16.0 MB-32.0 MB]: 300 frames
289
+ Requested Block Size 16.0 MB
290
+ Peak Block count 1
291
+ Peak Allocated memory 17.0 MB
292
+ Peak Large allocation bytes 16.0 MB
293
+ [ALLOC_TEMP_JOB_1_FRAME]
294
+ Initial Block Size 2.0 MB
295
+ Used Block Count 1
296
+ Overflow Count (too large) 0
297
+ Overflow Count (full) 0
298
+ [ALLOC_TEMP_JOB_2_FRAMES]
299
+ Initial Block Size 2.0 MB
300
+ Used Block Count 1
301
+ Overflow Count (too large) 0
302
+ Overflow Count (full) 0
303
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
304
+ Initial Block Size 2.0 MB
305
+ Used Block Count 2
306
+ Overflow Count (too large) 0
307
+ Overflow Count (full) 0
308
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
309
+ Initial Block Size 1.0 MB
310
+ Used Block Count 3
311
+ Overflow Count (too large) 0
312
+ Overflow Count (full) 0
313
+ [ALLOC_GFX] Dual Thread Allocator
314
+ Peak main deferred allocation count 0
315
+ [ALLOC_BUCKET]
316
+ Large Block size 4.0 MB
317
+ Used Block count 1
318
+ Peak Allocated bytes 0.9 MB
319
+ [ALLOC_GFX_MAIN]
320
+ Peak usage frame count: [32.0 KB-64.0 KB]: 299 frames, [64.0 KB-128.0 KB]: 1 frames
321
+ Requested Block Size 16.0 MB
322
+ Peak Block count 1
323
+ Peak Allocated memory 65.6 KB
324
+ Peak Large allocation bytes 0 B
325
+ [ALLOC_GFX_THREAD]
326
+ Peak usage frame count: [128.0 KB-256.0 KB]: 300 frames
327
+ Requested Block Size 16.0 MB
328
+ Peak Block count 1
329
+ Peak Allocated memory 173.6 KB
330
+ Peak Large allocation bytes 0 B
331
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
332
+ Peak main deferred allocation count 2
333
+ [ALLOC_BUCKET]
334
+ Large Block size 4.0 MB
335
+ Used Block count 1
336
+ Peak Allocated bytes 0.9 MB
337
+ [ALLOC_CACHEOBJECTS_MAIN]
338
+ Peak usage frame count: [0.5 MB-1.0 MB]: 300 frames
339
+ Requested Block Size 4.0 MB
340
+ Peak Block count 1
341
+ Peak Allocated memory 0.6 MB
342
+ Peak Large allocation bytes 0 B
343
+ [ALLOC_CACHEOBJECTS_THREAD]
344
+ Peak usage frame count: [0.5 MB-1.0 MB]: 299 frames, [2.0 MB-4.0 MB]: 1 frames
345
+ Requested Block Size 4.0 MB
346
+ Peak Block count 1
347
+ Peak Allocated memory 3.2 MB
348
+ Peak Large allocation bytes 0 B
349
+ [ALLOC_TYPETREE] Dual Thread Allocator
350
+ Peak main deferred allocation count 0
351
+ [ALLOC_BUCKET]
352
+ Large Block size 4.0 MB
353
+ Used Block count 1
354
+ Peak Allocated bytes 0.9 MB
355
+ [ALLOC_TYPETREE_MAIN]
356
+ Peak usage frame count: [0-1.0 KB]: 300 frames
357
+ Requested Block Size 2.0 MB
358
+ Peak Block count 1
359
+ Peak Allocated memory 1.0 KB
360
+ Peak Large allocation bytes 0 B
361
+ [ALLOC_TYPETREE_THREAD]
362
+ Peak usage frame count: [1.0 KB-2.0 KB]: 299 frames, [2.0 KB-4.0 KB]: 1 frames
363
+ Requested Block Size 2.0 MB
364
+ Peak Block count 1
365
+ Peak Allocated memory 2.2 KB
366
+ Peak Large allocation bytes 0 B
run_logs/timers.json ADDED
@@ -0,0 +1,277 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "gauges": {
4
+ "SoccerTwos.Policy.Entropy.mean": {
5
+ "value": 3.295736074447632,
6
+ "min": 3.295736074447632,
7
+ "max": 3.295736074447632,
8
+ "count": 1
9
+ },
10
+ "SoccerTwos.Policy.Entropy.sum": {
11
+ "value": 105463.5546875,
12
+ "min": 105463.5546875,
13
+ "max": 105463.5546875,
14
+ "count": 1
15
+ },
16
+ "SoccerTwos.Environment.EpisodeLength.mean": {
17
+ "value": 595.4,
18
+ "min": 595.4,
19
+ "max": 595.4,
20
+ "count": 1
21
+ },
22
+ "SoccerTwos.Environment.EpisodeLength.sum": {
23
+ "value": 23816.0,
24
+ "min": 23816.0,
25
+ "max": 23816.0,
26
+ "count": 1
27
+ },
28
+ "SoccerTwos.Self-play.ELO.mean": {
29
+ "value": 1199.502900161272,
30
+ "min": 1199.502900161272,
31
+ "max": 1199.502900161272,
32
+ "count": 1
33
+ },
34
+ "SoccerTwos.Self-play.ELO.sum": {
35
+ "value": 14394.034801935264,
36
+ "min": 14394.034801935264,
37
+ "max": 14394.034801935264,
38
+ "count": 1
39
+ },
40
+ "SoccerTwos.Step.mean": {
41
+ "value": 9928.0,
42
+ "min": 9928.0,
43
+ "max": 9928.0,
44
+ "count": 1
45
+ },
46
+ "SoccerTwos.Step.sum": {
47
+ "value": 9928.0,
48
+ "min": 9928.0,
49
+ "max": 9928.0,
50
+ "count": 1
51
+ },
52
+ "SoccerTwos.Policy.ExtrinsicBaselineEstimate.mean": {
53
+ "value": -0.035124365240335464,
54
+ "min": -0.035124365240335464,
55
+ "max": -0.035124365240335464,
56
+ "count": 1
57
+ },
58
+ "SoccerTwos.Policy.ExtrinsicBaselineEstimate.sum": {
59
+ "value": -0.6322385668754578,
60
+ "min": -0.6322385668754578,
61
+ "max": -0.6322385668754578,
62
+ "count": 1
63
+ },
64
+ "SoccerTwos.Policy.ExtrinsicValueEstimate.mean": {
65
+ "value": -0.03510645404458046,
66
+ "min": -0.03510645404458046,
67
+ "max": -0.03510645404458046,
68
+ "count": 1
69
+ },
70
+ "SoccerTwos.Policy.ExtrinsicValueEstimate.sum": {
71
+ "value": -0.6319161653518677,
72
+ "min": -0.6319161653518677,
73
+ "max": -0.6319161653518677,
74
+ "count": 1
75
+ },
76
+ "SoccerTwos.Environment.CumulativeReward.mean": {
77
+ "value": 0.0,
78
+ "min": 0.0,
79
+ "max": 0.0,
80
+ "count": 1
81
+ },
82
+ "SoccerTwos.Environment.CumulativeReward.sum": {
83
+ "value": 0.0,
84
+ "min": 0.0,
85
+ "max": 0.0,
86
+ "count": 1
87
+ },
88
+ "SoccerTwos.Policy.ExtrinsicReward.mean": {
89
+ "value": -0.11206666462951237,
90
+ "min": -0.11206666462951237,
91
+ "max": -0.11206666462951237,
92
+ "count": 1
93
+ },
94
+ "SoccerTwos.Policy.ExtrinsicReward.sum": {
95
+ "value": -2.0171999633312225,
96
+ "min": -2.0171999633312225,
97
+ "max": -2.0171999633312225,
98
+ "count": 1
99
+ },
100
+ "SoccerTwos.Environment.GroupCumulativeReward.mean": {
101
+ "value": -0.11206666462951237,
102
+ "min": -0.11206666462951237,
103
+ "max": -0.11206666462951237,
104
+ "count": 1
105
+ },
106
+ "SoccerTwos.Environment.GroupCumulativeReward.sum": {
107
+ "value": -2.0171999633312225,
108
+ "min": -2.0171999633312225,
109
+ "max": -2.0171999633312225,
110
+ "count": 1
111
+ },
112
+ "SoccerTwos.IsTraining.mean": {
113
+ "value": 0.0,
114
+ "min": 0.0,
115
+ "max": 0.0,
116
+ "count": 1
117
+ },
118
+ "SoccerTwos.IsTraining.sum": {
119
+ "value": 0.0,
120
+ "min": 0.0,
121
+ "max": 0.0,
122
+ "count": 1
123
+ }
124
+ },
125
+ "metadata": {
126
+ "timer_format_version": "0.1.0",
127
+ "start_time_seconds": "1684774204",
128
+ "python_version": "3.9.10 (tags/v3.9.10:f2f3f53, Jan 17 2022, 15:14:21) [MSC v.1929 64 bit (AMD64)]",
129
+ "command_line_arguments": "C:\\Users\\USUARIO\\.pyenv\\pyenv-win\\versions\\3.9.10\\Scripts\\mlagents-learn ./config/poca/SoccerTwos.yaml --env=.\\\\SoccerTwos\\\\SoccerTwos.exe --run-id=SoccerTwos --no-graphics --force",
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.0+cpu",
134
+ "numpy_version": "1.21.2",
135
+ "end_time_seconds": "1684774219"
136
+ },
137
+ "total": 15.152778699999999,
138
+ "count": 1,
139
+ "self": 0.1582077999999978,
140
+ "children": {
141
+ "run_training.setup": {
142
+ "total": 0.07621860000000003,
143
+ "count": 1,
144
+ "self": 0.07621860000000003
145
+ },
146
+ "TrainerController.start_learning": {
147
+ "total": 14.9183523,
148
+ "count": 1,
149
+ "self": 0.012909400000003401,
150
+ "children": {
151
+ "TrainerController._reset_env": {
152
+ "total": 2.6936434,
153
+ "count": 1,
154
+ "self": 2.6936434
155
+ },
156
+ "TrainerController.advance": {
157
+ "total": 12.147180199999996,
158
+ "count": 1004,
159
+ "self": 0.014211399999970453,
160
+ "children": {
161
+ "env_step": {
162
+ "total": 10.814022300000001,
163
+ "count": 1004,
164
+ "self": 8.711554699999976,
165
+ "children": {
166
+ "SubprocessEnvManager._take_step": {
167
+ "total": 2.094348800000026,
168
+ "count": 1004,
169
+ "self": 0.07127090000002223,
170
+ "children": {
171
+ "TorchPolicy.evaluate": {
172
+ "total": 2.0230779000000036,
173
+ "count": 2000,
174
+ "self": 2.0230779000000036
175
+ }
176
+ }
177
+ },
178
+ "workers": {
179
+ "total": 0.008118799999999649,
180
+ "count": 1004,
181
+ "self": 0.0,
182
+ "children": {
183
+ "worker_root": {
184
+ "total": 12.623107200000037,
185
+ "count": 1004,
186
+ "is_parallel": true,
187
+ "self": 5.335519299999998,
188
+ "children": {
189
+ "steps_from_proto": {
190
+ "total": 0.0010125000000000828,
191
+ "count": 2,
192
+ "is_parallel": true,
193
+ "self": 0.00022460000000013025,
194
+ "children": {
195
+ "_process_rank_one_or_two_observation": {
196
+ "total": 0.0007878999999999525,
197
+ "count": 8,
198
+ "is_parallel": true,
199
+ "self": 0.0007878999999999525
200
+ }
201
+ }
202
+ },
203
+ "UnityEnvironment.step": {
204
+ "total": 7.286575400000039,
205
+ "count": 1004,
206
+ "is_parallel": true,
207
+ "self": 0.29369840000002867,
208
+ "children": {
209
+ "UnityEnvironment._generate_step_input": {
210
+ "total": 0.19144409999999246,
211
+ "count": 1004,
212
+ "is_parallel": true,
213
+ "self": 0.19144409999999246
214
+ },
215
+ "communicator.exchange": {
216
+ "total": 5.8811339999999905,
217
+ "count": 1004,
218
+ "is_parallel": true,
219
+ "self": 5.8811339999999905
220
+ },
221
+ "steps_from_proto": {
222
+ "total": 0.9202989000000277,
223
+ "count": 2008,
224
+ "is_parallel": true,
225
+ "self": 0.1803979999999803,
226
+ "children": {
227
+ "_process_rank_one_or_two_observation": {
228
+ "total": 0.7399009000000474,
229
+ "count": 8032,
230
+ "is_parallel": true,
231
+ "self": 0.7399009000000474
232
+ }
233
+ }
234
+ }
235
+ }
236
+ }
237
+ }
238
+ }
239
+ }
240
+ }
241
+ }
242
+ },
243
+ "trainer_advance": {
244
+ "total": 1.3189465000000244,
245
+ "count": 1004,
246
+ "self": 0.07088530000000892,
247
+ "children": {
248
+ "process_trajectory": {
249
+ "total": 1.2480612000000155,
250
+ "count": 1004,
251
+ "self": 1.2480612000000155
252
+ }
253
+ }
254
+ }
255
+ }
256
+ },
257
+ "trainer_threads": {
258
+ "total": 5.00000002290335e-07,
259
+ "count": 1,
260
+ "self": 5.00000002290335e-07
261
+ },
262
+ "TrainerController._save_models": {
263
+ "total": 0.06461879999999809,
264
+ "count": 1,
265
+ "self": 0.001846499999999196,
266
+ "children": {
267
+ "RLTrainer._checkpoint": {
268
+ "total": 0.06277229999999889,
269
+ "count": 1,
270
+ "self": 0.06277229999999889
271
+ }
272
+ }
273
+ }
274
+ }
275
+ }
276
+ }
277
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "SoccerTwos": {
3
+ "elo": 1200.017218281153,
4
+ "checkpoints": [
5
+ {
6
+ "steps": 11928,
7
+ "file_path": "results\\SoccerTwos\\SoccerTwos\\SoccerTwos-11928.onnx",
8
+ "reward": 0.0,
9
+ "creation_time": 1684774219.3840177,
10
+ "auxillary_file_paths": [
11
+ "results\\SoccerTwos\\SoccerTwos\\SoccerTwos-11928.pt"
12
+ ]
13
+ }
14
+ ],
15
+ "final_checkpoint": {
16
+ "steps": 11928,
17
+ "file_path": "results\\SoccerTwos\\SoccerTwos.onnx",
18
+ "reward": 0.0,
19
+ "creation_time": 1684774219.3840177,
20
+ "auxillary_file_paths": [
21
+ "results\\SoccerTwos\\SoccerTwos\\SoccerTwos-11928.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.0+cpu"
29
+ }
30
+ }