Taratata commited on
Commit
7e74ca8
1 Parent(s): 580a1a4

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: Taratata/poca-SoccerTwos
29
+ 3. Step 2: Select your *.nn /*.onnx file
30
+ 4. Click on Watch the agent play 👀
31
+
SoccerTwos/events.out.tfevents.1677961035.DESKTOP-N8HIH1E.9656.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:498d65b26ec7b779bac6c96ad1ea6294c515f66b90c5e85eb37e535846959ae2
3
+ size 135225
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": 1000, "time_horizon": 10, "summary_freq": 100, "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.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: 1000
41
+ time_horizon: 10
42
+ summary_freq: 100
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.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,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = 'd:/Users/tara0/Deep Learning/ml-agents/training-envs-executables/SoccerTwos/SoccerTwos_Data/Managed'
2
+ Mono config path = 'd:/Users/tara0/Deep Learning/ml-agents/training-envs-executables/SoccerTwos/MonoBleedingEdge/etc'
3
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
4
+ [Subsystems] Discovering subsystems at path d:/Users/tara0/Deep 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 15.600 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: 129.027800 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
+ Setting up 2 worker threads for Enlighten.
132
+ Memory Statistics:
133
+ [ALLOC_TEMP_TLS] TLS Allocator
134
+ StackAllocators :
135
+ [ALLOC_TEMP_MAIN]
136
+ Peak usage frame count: [8.0 KB-16.0 KB]: 4297 frames, [2.0 MB-4.0 MB]: 1 frames
137
+ Initial Block Size 4.0 MB
138
+ Current Block Size 4.0 MB
139
+ Peak Allocated Bytes 2.0 MB
140
+ Overflow Count 0
141
+ [ALLOC_TEMP_Loading.AsyncRead]
142
+ Initial Block Size 64.0 KB
143
+ Current Block Size 64.0 KB
144
+ Peak Allocated Bytes 354 B
145
+ Overflow Count 0
146
+ [ALLOC_TEMP_Loading.PreloadManager]
147
+ Initial Block Size 256.0 KB
148
+ Current Block Size 256.0 KB
149
+ Peak Allocated Bytes 67.1 KB
150
+ Overflow Count 4
151
+ [ALLOC_TEMP_Background Job.Worker 8]
152
+ Initial Block Size 32.0 KB
153
+ Current Block Size 32.0 KB
154
+ Peak Allocated Bytes 54 B
155
+ Overflow Count 0
156
+ [ALLOC_TEMP_Background Job.Worker 9]
157
+ Initial Block Size 32.0 KB
158
+ Current Block Size 32.0 KB
159
+ Peak Allocated Bytes 54 B
160
+ Overflow Count 0
161
+ [ALLOC_TEMP_Job.Worker 0]
162
+ Initial Block Size 256.0 KB
163
+ Current Block Size 256.0 KB
164
+ Peak Allocated Bytes 0.8 KB
165
+ Overflow Count 0
166
+ [ALLOC_TEMP_Background Job.Worker 10]
167
+ Initial Block Size 32.0 KB
168
+ Current Block Size 32.0 KB
169
+ Peak Allocated Bytes 54 B
170
+ Overflow Count 0
171
+ [ALLOC_TEMP_Background Job.Worker 14]
172
+ Initial Block Size 32.0 KB
173
+ Current Block Size 32.0 KB
174
+ Peak Allocated Bytes 54 B
175
+ Overflow Count 0
176
+ [ALLOC_TEMP_Background Job.Worker 6]
177
+ Initial Block Size 32.0 KB
178
+ Current Block Size 32.0 KB
179
+ Peak Allocated Bytes 54 B
180
+ Overflow Count 0
181
+ [ALLOC_TEMP_Background Job.Worker 12]
182
+ Initial Block Size 32.0 KB
183
+ Current Block Size 32.0 KB
184
+ Peak Allocated Bytes 54 B
185
+ Overflow Count 0
186
+ [ALLOC_TEMP_EnlightenWorker] x 2
187
+ Initial Block Size 64.0 KB
188
+ Current Block Size 64.0 KB
189
+ Peak Allocated Bytes 54 B
190
+ Overflow Count 0
191
+ [ALLOC_TEMP_Background Job.Worker 15]
192
+ Initial Block Size 32.0 KB
193
+ Current Block Size 32.0 KB
194
+ Peak Allocated Bytes 54 B
195
+ Overflow Count 0
196
+ [ALLOC_TEMP_Background Job.Worker 1]
197
+ Initial Block Size 32.0 KB
198
+ Current Block Size 32.0 KB
199
+ Peak Allocated Bytes 54 B
200
+ Overflow Count 0
201
+ [ALLOC_TEMP_Background Job.Worker 2]
202
+ Initial Block Size 32.0 KB
203
+ Current Block Size 32.0 KB
204
+ Peak Allocated Bytes 54 B
205
+ Overflow Count 0
206
+ [ALLOC_TEMP_Background Job.Worker 7]
207
+ Initial Block Size 32.0 KB
208
+ Current Block Size 32.0 KB
209
+ Peak Allocated Bytes 54 B
210
+ Overflow Count 0
211
+ [ALLOC_TEMP_AssetGarbageCollectorHelper] x 3
212
+ Initial Block Size 64.0 KB
213
+ Current Block Size 64.0 KB
214
+ Peak Allocated Bytes 0 B
215
+ Overflow Count 0
216
+ [ALLOC_TEMP_Background Job.Worker 5]
217
+ Initial Block Size 32.0 KB
218
+ Current Block Size 32.0 KB
219
+ Peak Allocated Bytes 54 B
220
+ Overflow Count 0
221
+ [ALLOC_TEMP_Background Job.Worker 13]
222
+ Initial Block Size 32.0 KB
223
+ Current Block Size 32.0 KB
224
+ Peak Allocated Bytes 54 B
225
+ Overflow Count 0
226
+ [ALLOC_TEMP_Job.Worker 1]
227
+ Initial Block Size 256.0 KB
228
+ Current Block Size 256.0 KB
229
+ Peak Allocated Bytes 0 B
230
+ Overflow Count 0
231
+ [ALLOC_TEMP_Job.Worker 2]
232
+ Initial Block Size 256.0 KB
233
+ Current Block Size 256.0 KB
234
+ Peak Allocated Bytes 0 B
235
+ Overflow Count 0
236
+ [ALLOC_TEMP_Background Job.Worker 3]
237
+ Initial Block Size 32.0 KB
238
+ Current Block Size 32.0 KB
239
+ Peak Allocated Bytes 54 B
240
+ Overflow Count 0
241
+ [ALLOC_TEMP_Background Job.Worker 11]
242
+ Initial Block Size 32.0 KB
243
+ Current Block Size 32.0 KB
244
+ Peak Allocated Bytes 54 B
245
+ Overflow Count 0
246
+ [ALLOC_TEMP_Background Job.Worker 0]
247
+ Initial Block Size 32.0 KB
248
+ Current Block Size 32.0 KB
249
+ Peak Allocated Bytes 54 B
250
+ Overflow Count 0
251
+ [ALLOC_TEMP_Background Job.Worker 4]
252
+ Initial Block Size 32.0 KB
253
+ Current Block Size 32.0 KB
254
+ Peak Allocated Bytes 54 B
255
+ Overflow Count 0
256
+ [ALLOC_TEMP_BatchDeleteObjects]
257
+ Initial Block Size 64.0 KB
258
+ Current Block Size 64.0 KB
259
+ Peak Allocated Bytes 54 B
260
+ Overflow Count 0
261
+ [ALLOC_DEFAULT] Dual Thread Allocator
262
+ Peak main deferred allocation count 4
263
+ [ALLOC_BUCKET]
264
+ Large Block size 4.0 MB
265
+ Used Block count 1
266
+ Peak Allocated bytes 0.9 MB
267
+ [ALLOC_DEFAULT_MAIN]
268
+ Peak usage frame count: [4.0 MB-8.0 MB]: 4298 frames
269
+ Requested Block Size 16.0 MB
270
+ Peak Block count 1
271
+ Peak Allocated memory 4.9 MB
272
+ Peak Large allocation bytes 0 B
273
+ [ALLOC_DEFAULT_THREAD]
274
+ Peak usage frame count: [16.0 MB-32.0 MB]: 4298 frames
275
+ Requested Block Size 16.0 MB
276
+ Peak Block count 1
277
+ Peak Allocated memory 17.4 MB
278
+ Peak Large allocation bytes 16.0 MB
279
+ [ALLOC_TEMP_JOB_1_FRAME]
280
+ Initial Block Size 2.0 MB
281
+ Used Block Count 1
282
+ Overflow Count (too large) 0
283
+ Overflow Count (full) 0
284
+ [ALLOC_TEMP_JOB_2_FRAMES]
285
+ Initial Block Size 2.0 MB
286
+ Used Block Count 1
287
+ Overflow Count (too large) 0
288
+ Overflow Count (full) 0
289
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
290
+ Initial Block Size 2.0 MB
291
+ Used Block Count 2
292
+ Overflow Count (too large) 0
293
+ Overflow Count (full) 0
294
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
295
+ Initial Block Size 1.0 MB
296
+ Used Block Count 3
297
+ Overflow Count (too large) 0
298
+ Overflow Count (full) 0
299
+ [ALLOC_GFX] Dual Thread Allocator
300
+ Peak main deferred allocation count 0
301
+ [ALLOC_BUCKET]
302
+ Large Block size 4.0 MB
303
+ Used Block count 1
304
+ Peak Allocated bytes 0.9 MB
305
+ [ALLOC_GFX_MAIN]
306
+ Peak usage frame count: [32.0 KB-64.0 KB]: 4297 frames, [64.0 KB-128.0 KB]: 1 frames
307
+ Requested Block Size 16.0 MB
308
+ Peak Block count 1
309
+ Peak Allocated memory 65.6 KB
310
+ Peak Large allocation bytes 0 B
311
+ [ALLOC_GFX_THREAD]
312
+ Peak usage frame count: [128.0 KB-256.0 KB]: 4298 frames
313
+ Requested Block Size 16.0 MB
314
+ Peak Block count 1
315
+ Peak Allocated memory 173.6 KB
316
+ Peak Large allocation bytes 0 B
317
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
318
+ Peak main deferred allocation count 2
319
+ [ALLOC_BUCKET]
320
+ Large Block size 4.0 MB
321
+ Used Block count 1
322
+ Peak Allocated bytes 0.9 MB
323
+ [ALLOC_CACHEOBJECTS_MAIN]
324
+ Peak usage frame count: [0.5 MB-1.0 MB]: 4298 frames
325
+ Requested Block Size 4.0 MB
326
+ Peak Block count 1
327
+ Peak Allocated memory 0.6 MB
328
+ Peak Large allocation bytes 0 B
329
+ [ALLOC_CACHEOBJECTS_THREAD]
330
+ Peak usage frame count: [0.5 MB-1.0 MB]: 4297 frames, [2.0 MB-4.0 MB]: 1 frames
331
+ Requested Block Size 4.0 MB
332
+ Peak Block count 1
333
+ Peak Allocated memory 3.2 MB
334
+ Peak Large allocation bytes 0 B
335
+ [ALLOC_TYPETREE] Dual Thread Allocator
336
+ Peak main deferred allocation count 0
337
+ [ALLOC_BUCKET]
338
+ Large Block size 4.0 MB
339
+ Used Block count 1
340
+ Peak Allocated bytes 0.9 MB
341
+ [ALLOC_TYPETREE_MAIN]
342
+ Peak usage frame count: [0-1.0 KB]: 4298 frames
343
+ Requested Block Size 2.0 MB
344
+ Peak Block count 1
345
+ Peak Allocated memory 1.0 KB
346
+ Peak Large allocation bytes 0 B
347
+ [ALLOC_TYPETREE_THREAD]
348
+ Peak usage frame count: [1.0 KB-2.0 KB]: 4297 frames, [2.0 KB-4.0 KB]: 1 frames
349
+ Requested Block Size 2.0 MB
350
+ Peak Block count 1
351
+ Peak Allocated memory 2.2 KB
352
+ Peak Large allocation bytes 0 B
run_logs/timers.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "metadata": {
4
+ "timer_format_version": "0.1.0",
5
+ "start_time_seconds": "1677961769",
6
+ "python_version": "3.9.16 (main, Mar 1 2023, 18:30:21) [MSC v.1916 64 bit (AMD64)]",
7
+ "command_line_arguments": "D:\\Users\\tara0\\anaconda3\\envs\\RL\\Scripts\\mlagents-learn ./config/poca/SoccerTwos.yaml --env=./training-envs-executables/SoccerTwos.exe --run-id=SoccerTwos --no-graphics --force",
8
+ "mlagents_version": "0.31.0.dev0",
9
+ "mlagents_envs_version": "0.31.0.dev0",
10
+ "communication_protocol_version": "1.5.0",
11
+ "pytorch_version": "1.13.1+cpu",
12
+ "numpy_version": "1.21.2",
13
+ "end_time_seconds": "1677961775"
14
+ },
15
+ "total": 6.7208566,
16
+ "count": 1,
17
+ "self": 0.03700880000000062,
18
+ "children": {
19
+ "run_training.setup": {
20
+ "total": 1.103033,
21
+ "count": 1,
22
+ "self": 1.103033
23
+ },
24
+ "TrainerController.start_learning": {
25
+ "total": 5.5808148,
26
+ "count": 1,
27
+ "self": 0.00036849999999866156,
28
+ "children": {
29
+ "TrainerController._reset_env": {
30
+ "total": 5.5804295999999995,
31
+ "count": 1,
32
+ "self": 5.5804295999999995
33
+ },
34
+ "TrainerController._save_models": {
35
+ "total": 1.670000000153493e-05,
36
+ "count": 1,
37
+ "self": 1.670000000153493e-05
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "stats_format_version": "0.3.0",
4
+ "mlagents_version": "0.31.0.dev0",
5
+ "torch_version": "1.13.1+cpu"
6
+ }
7
+ }