bunnyTech commited on
Commit
680d89c
·
verified ·
1 Parent(s): d861e4b

Push Huggy to the Hub

Browse files
Huggy.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2959ef6517399351af6213e56289cae40855118ee34f0f9f9edbe6b4d3e1d93
3
+ size 2273984
Huggy/events.out.tfevents.1709780160.dlserver.118076.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7dd4298646b27013b8885e3ab4dd1e8542a3aa7cdd69947c5d40a50a20b2d19
3
+ size 378817
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: ml-agents
3
+ tags:
4
+ - Huggy
5
+ - deep-reinforcement-learning
6
+ - reinforcement-learning
7
+ - ML-Agents-Huggy
8
+ ---
9
+
10
+ # **ppo** Agent playing **Huggy**
11
+ This is a trained model of a **ppo** agent playing **Huggy**
12
+ using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
13
+
14
+ ## Usage (with ML-Agents)
15
+ The Documentation: https://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/
16
+
17
+ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
18
+ - A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your
19
+ browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction
20
+ - A *longer tutorial* to understand how works ML-Agents:
21
+ https://huggingface.co/learn/deep-rl-course/unit5/introduction
22
+
23
+ ### Resume the training
24
+ ```bash
25
+ mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
26
+ ```
27
+
28
+ ### Watch your Agent play
29
+ You can watch your agent **playing directly in your browser**
30
+
31
+ 1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity
32
+ 2. Step 1: Find your model_id: bunnyTech/ppo-Huggy
33
+ 3. Step 2: Select your *.nn /*.onnx file
34
+ 4. Click on Watch the agent play 👀
35
+
config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"default_settings": null, "behaviors": {"Huggy": {"trainer_type": "ppo", "hyperparameters": {"batch_size": 2048, "buffer_size": 20480, "learning_rate": 0.0003, "beta": 0.005, "epsilon": 0.2, "lambd": 0.95, "num_epoch": 3, "shared_critic": false, "learning_rate_schedule": "linear", "beta_schedule": "linear", "epsilon_schedule": "linear"}, "checkpoint_interval": 200000, "network_settings": {"normalize": true, "hidden_units": 512, "num_layers": 3, "vis_encode_type": "simple", "memory": null, "goal_conditioning_type": "hyper", "deterministic": false}, "reward_signals": {"extrinsic": {"gamma": 0.995, "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": 15, "even_checkpoints": false, "max_steps": 2000000, "time_horizon": 1000, "summary_freq": 50000, "threaded": false, "self_play": null, "behavioral_cloning": null}}, "env_settings": {"env_path": "./ml-agents/trained-envs-executables/linux/Huggy/Huggy", "env_args": null, "base_port": 5005, "num_envs": 1, "num_areas": 1, "timeout_wait": 60, "seed": -1, "max_lifetime_restarts": 10, "restarts_rate_limit_n": 1, "restarts_rate_limit_period_s": 60}, "engine_settings": {"width": 84, "height": 84, "quality_level": 5, "time_scale": 20, "target_frame_rate": -1, "capture_frame_rate": 60, "no_graphics": true, "no_graphics_monitor": false}, "environment_parameters": null, "checkpoint_settings": {"run_id": "Huggy2", "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,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_settings: null
2
+ behaviors:
3
+ Huggy:
4
+ trainer_type: ppo
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
+ shared_critic: false
14
+ learning_rate_schedule: linear
15
+ beta_schedule: linear
16
+ epsilon_schedule: linear
17
+ checkpoint_interval: 200000
18
+ network_settings:
19
+ normalize: true
20
+ hidden_units: 512
21
+ num_layers: 3
22
+ vis_encode_type: simple
23
+ memory: null
24
+ goal_conditioning_type: hyper
25
+ deterministic: false
26
+ reward_signals:
27
+ extrinsic:
28
+ gamma: 0.995
29
+ strength: 1.0
30
+ network_settings:
31
+ normalize: false
32
+ hidden_units: 128
33
+ num_layers: 2
34
+ vis_encode_type: simple
35
+ memory: null
36
+ goal_conditioning_type: hyper
37
+ deterministic: false
38
+ init_path: null
39
+ keep_checkpoints: 15
40
+ even_checkpoints: false
41
+ max_steps: 2000000
42
+ time_horizon: 1000
43
+ summary_freq: 50000
44
+ threaded: false
45
+ self_play: null
46
+ behavioral_cloning: null
47
+ env_settings:
48
+ env_path: ./ml-agents/trained-envs-executables/linux/Huggy/Huggy
49
+ env_args: null
50
+ base_port: 5005
51
+ num_envs: 1
52
+ num_areas: 1
53
+ timeout_wait: 60
54
+ seed: -1
55
+ max_lifetime_restarts: 10
56
+ restarts_rate_limit_n: 1
57
+ restarts_rate_limit_period_s: 60
58
+ engine_settings:
59
+ width: 84
60
+ height: 84
61
+ quality_level: 5
62
+ time_scale: 20
63
+ target_frame_rate: -1
64
+ capture_frame_rate: 60
65
+ no_graphics: true
66
+ no_graphics_monitor: false
67
+ environment_parameters: null
68
+ checkpoint_settings:
69
+ run_id: Huggy2
70
+ initialize_from: null
71
+ load_model: false
72
+ resume: false
73
+ force: false
74
+ train_model: false
75
+ inference: false
76
+ results_dir: results
77
+ torch_settings:
78
+ device: null
79
+ debug: false
run_logs/Player-0.log ADDED
@@ -0,0 +1,444 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = '/home/dl/hf_rf_course/unit2/ml-agents/ml-agents/trained-envs-executables/linux/Huggy/Huggy_Data/Managed'
2
+ Mono config path = '/home/dl/hf_rf_course/unit2/ml-agents/ml-agents/trained-envs-executables/linux/Huggy/Huggy_Data/MonoBleedingEdge/etc'
3
+ Preloaded 'lib_burst_generated.so'
4
+ Preloaded 'libgrpc_csharp_ext.x64.so'
5
+ PlayerPrefs - Creating folder: /home/dl/.config/unity3d/Hugging Face
6
+ PlayerPrefs - Creating folder: /home/dl/.config/unity3d/Hugging Face/Huggy
7
+ Unable to load player prefs
8
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
9
+ [Subsystems] Discovering subsystems at path /home/dl/hf_rf_course/unit2/ml-agents/ml-agents/trained-envs-executables/linux/Huggy/Huggy_Data/UnitySubsystems
10
+ Forcing GfxDevice: Null
11
+ GfxDevice: creating device client; threaded=0; jobified=0
12
+ NullGfxDevice:
13
+ Version: NULL 1.0 [1.0]
14
+ Renderer: Null Device
15
+ Vendor: Unity Technologies
16
+ Begin MonoManager ReloadAssembly
17
+ - Completed reload, in 0.064 seconds
18
+ ERROR: Shader Hidden/Universal Render Pipeline/Blit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
19
+ ERROR: Shader Hidden/Universal Render Pipeline/CopyDepth shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
20
+ ERROR: Shader Hidden/Universal Render Pipeline/ScreenSpaceShadows shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
21
+ ERROR: Shader Hidden/Universal Render Pipeline/Sampling shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
22
+ ERROR: Shader Hidden/Universal Render Pipeline/LutBuilderLdr shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
23
+ ERROR: Shader Hidden/Universal Render Pipeline/LutBuilderHdr shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
24
+ ERROR: Shader Hidden/Universal Render Pipeline/UberPost shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
25
+ WARNING: Shader Unsupported: 'Hidden/Universal Render Pipeline/FallbackError' - All subshaders removed
26
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
27
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
28
+ ERROR: Shader Hidden/Universal Render Pipeline/FallbackError shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
29
+ WARNING: Shader Unsupported: 'Hidden/Universal Render Pipeline/FallbackError' - All subshaders removed
30
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
31
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
32
+ ERROR: Shader Hidden/Universal Render Pipeline/Stop NaN shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
33
+ ERROR: Shader Hidden/Universal Render Pipeline/SubpixelMorphologicalAntialiasing shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
34
+ ERROR: Shader Hidden/Universal Render Pipeline/GaussianDepthOfField shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
35
+ ERROR: Shader Hidden/Universal Render Pipeline/BokehDepthOfField shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
36
+ ERROR: Shader Hidden/Universal Render Pipeline/CameraMotionBlur shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
37
+ ERROR: Shader Hidden/Universal Render Pipeline/PaniniProjection shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
38
+ ERROR: Shader Hidden/Universal Render Pipeline/Bloom shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
39
+ ERROR: Shader Hidden/Universal Render Pipeline/FinalPost shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
40
+ WARNING: Shader Unsupported: 'Hidden/Universal Render Pipeline/StencilDeferred' - All subshaders removed
41
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
42
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
43
+ WARNING: Shader Unsupported: 'Hidden/Universal Render Pipeline/StencilDeferred' - All subshaders removed
44
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
45
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
46
+ ERROR: Shader Hidden/Universal Render Pipeline/LensFlareDataDriven shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
47
+ ERROR: Shader Hidden/Universal Render Pipeline/Scaling Setup shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
48
+ ERROR: Shader Hidden/Universal Render Pipeline/Edge Adaptive Spatial Upsampling shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
49
+ ERROR: Shader Hidden/Universal Render Pipeline/Debug/DebugReplacement shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
50
+ ERROR: Shader Hidden/kMotion/CameraMotionVectors shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
51
+ ERROR: Shader Hidden/kMotion/ObjectMotionVectors shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
52
+ ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
53
+ ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
54
+ WARNING: Shader Unsupported: 'Universal Render Pipeline/Lit' - All subshaders removed
55
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
56
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
57
+ ERROR: Shader Universal Render Pipeline/Lit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
58
+ WARNING: Shader Unsupported: 'Universal Render Pipeline/Lit' - All subshaders removed
59
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
60
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
61
+ UnloadTime: 1.183432 ms
62
+ requesting resize 84 x 84
63
+ Setting up 18 worker threads for Enlighten.
64
+ Memory Statistics:
65
+ [ALLOC_TEMP_TLS] TLS Allocator
66
+ StackAllocators :
67
+ [ALLOC_TEMP_MAIN]
68
+ Peak usage frame count: [4.0 KB-8.0 KB]: 26766 frames, [2.0 MB-4.0 MB]: 1 frames
69
+ Initial Block Size 4.0 MB
70
+ Current Block Size 4.0 MB
71
+ Peak Allocated Bytes 3.6 MB
72
+ Overflow Count 0
73
+ [ALLOC_TEMP_Job.Worker 18]
74
+ Initial Block Size 256.0 KB
75
+ Current Block Size 256.0 KB
76
+ Peak Allocated Bytes 0 B
77
+ Overflow Count 0
78
+ [ALLOC_TEMP_Loading.PreloadManager]
79
+ Initial Block Size 256.0 KB
80
+ Current Block Size 296.0 KB
81
+ Peak Allocated Bytes 211.6 KB
82
+ Overflow Count 4
83
+ [ALLOC_TEMP_Background Job.Worker 8]
84
+ Initial Block Size 32.0 KB
85
+ Current Block Size 32.0 KB
86
+ Peak Allocated Bytes 0 B
87
+ Overflow Count 0
88
+ [ALLOC_TEMP_Background Job.Worker 10]
89
+ Initial Block Size 32.0 KB
90
+ Current Block Size 32.0 KB
91
+ Peak Allocated Bytes 0 B
92
+ Overflow Count 0
93
+ [ALLOC_TEMP_Job.Worker 16]
94
+ Initial Block Size 256.0 KB
95
+ Current Block Size 256.0 KB
96
+ Peak Allocated Bytes 0 B
97
+ Overflow Count 0
98
+ [ALLOC_TEMP_Background Job.Worker 6]
99
+ Initial Block Size 32.0 KB
100
+ Current Block Size 32.0 KB
101
+ Peak Allocated Bytes 0 B
102
+ Overflow Count 0
103
+ [ALLOC_TEMP_Job.Worker 4]
104
+ Initial Block Size 256.0 KB
105
+ Current Block Size 256.0 KB
106
+ Peak Allocated Bytes 0 B
107
+ Overflow Count 0
108
+ [ALLOC_TEMP_Job.Worker 27]
109
+ Initial Block Size 256.0 KB
110
+ Current Block Size 256.0 KB
111
+ Peak Allocated Bytes 0 B
112
+ Overflow Count 0
113
+ [ALLOC_TEMP_Job.Worker 17]
114
+ Initial Block Size 256.0 KB
115
+ Current Block Size 256.0 KB
116
+ Peak Allocated Bytes 0 B
117
+ Overflow Count 0
118
+ [ALLOC_TEMP_Job.Worker 14]
119
+ Initial Block Size 256.0 KB
120
+ Current Block Size 256.0 KB
121
+ Peak Allocated Bytes 0 B
122
+ Overflow Count 0
123
+ [ALLOC_TEMP_Job.Worker 3]
124
+ Initial Block Size 256.0 KB
125
+ Current Block Size 256.0 KB
126
+ Peak Allocated Bytes 0 B
127
+ Overflow Count 0
128
+ [ALLOC_TEMP_Background Job.Worker 12]
129
+ Initial Block Size 32.0 KB
130
+ Current Block Size 32.0 KB
131
+ Peak Allocated Bytes 0 B
132
+ Overflow Count 0
133
+ [ALLOC_TEMP_Background Job.Worker 1]
134
+ Initial Block Size 32.0 KB
135
+ Current Block Size 32.0 KB
136
+ Peak Allocated Bytes 0 B
137
+ Overflow Count 0
138
+ [ALLOC_TEMP_AssetGarbageCollectorHelper] x 35
139
+ Initial Block Size 64.0 KB
140
+ Current Block Size 64.0 KB
141
+ Peak Allocated Bytes 0 B
142
+ Overflow Count 0
143
+ [ALLOC_TEMP_Background Job.Worker 5]
144
+ Initial Block Size 32.0 KB
145
+ Current Block Size 32.0 KB
146
+ Peak Allocated Bytes 0 B
147
+ Overflow Count 0
148
+ [ALLOC_TEMP_Background Job.Worker 13]
149
+ Initial Block Size 32.0 KB
150
+ Current Block Size 32.0 KB
151
+ Peak Allocated Bytes 0 B
152
+ Overflow Count 0
153
+ [ALLOC_TEMP_Background Job.Worker 11]
154
+ Initial Block Size 32.0 KB
155
+ Current Block Size 32.0 KB
156
+ Peak Allocated Bytes 0 B
157
+ Overflow Count 0
158
+ [ALLOC_TEMP_Job.Worker 2]
159
+ Initial Block Size 256.0 KB
160
+ Current Block Size 256.0 KB
161
+ Peak Allocated Bytes 0 B
162
+ Overflow Count 0
163
+ [ALLOC_TEMP_Background Job.Worker 3]
164
+ Initial Block Size 32.0 KB
165
+ Current Block Size 32.0 KB
166
+ Peak Allocated Bytes 0 B
167
+ Overflow Count 0
168
+ [ALLOC_TEMP_Background Job.Worker 0]
169
+ Initial Block Size 32.0 KB
170
+ Current Block Size 32.0 KB
171
+ Peak Allocated Bytes 0 B
172
+ Overflow Count 0
173
+ [ALLOC_TEMP_Job.Worker 20]
174
+ Initial Block Size 256.0 KB
175
+ Current Block Size 256.0 KB
176
+ Peak Allocated Bytes 0 B
177
+ Overflow Count 0
178
+ [ALLOC_TEMP_Job.Worker 11]
179
+ Initial Block Size 256.0 KB
180
+ Current Block Size 256.0 KB
181
+ Peak Allocated Bytes 0 B
182
+ Overflow Count 0
183
+ [ALLOC_TEMP_Background Job.Worker 4]
184
+ Initial Block Size 32.0 KB
185
+ Current Block Size 32.0 KB
186
+ Peak Allocated Bytes 0 B
187
+ Overflow Count 0
188
+ [ALLOC_TEMP_BatchDeleteObjects]
189
+ Initial Block Size 64.0 KB
190
+ Current Block Size 64.0 KB
191
+ Peak Allocated Bytes 0 B
192
+ Overflow Count 0
193
+ [ALLOC_TEMP_Job.Worker 30]
194
+ Initial Block Size 256.0 KB
195
+ Current Block Size 256.0 KB
196
+ Peak Allocated Bytes 0 B
197
+ Overflow Count 0
198
+ [ALLOC_TEMP_Job.Worker 6]
199
+ Initial Block Size 256.0 KB
200
+ Current Block Size 256.0 KB
201
+ Peak Allocated Bytes 0 B
202
+ Overflow Count 0
203
+ [ALLOC_TEMP_Job.Worker 0]
204
+ Initial Block Size 256.0 KB
205
+ Current Block Size 256.0 KB
206
+ Peak Allocated Bytes 0 B
207
+ Overflow Count 0
208
+ [ALLOC_TEMP_Job.Worker 26]
209
+ Initial Block Size 256.0 KB
210
+ Current Block Size 256.0 KB
211
+ Peak Allocated Bytes 0 B
212
+ Overflow Count 0
213
+ [ALLOC_TEMP_Job.Worker 21]
214
+ Initial Block Size 256.0 KB
215
+ Current Block Size 256.0 KB
216
+ Peak Allocated Bytes 0 B
217
+ Overflow Count 0
218
+ [ALLOC_TEMP_Job.Worker 5]
219
+ Initial Block Size 256.0 KB
220
+ Current Block Size 256.0 KB
221
+ Peak Allocated Bytes 0 B
222
+ Overflow Count 0
223
+ [ALLOC_TEMP_Background Job.Worker 9]
224
+ Initial Block Size 32.0 KB
225
+ Current Block Size 32.0 KB
226
+ Peak Allocated Bytes 0 B
227
+ Overflow Count 0
228
+ [ALLOC_TEMP_Job.Worker 25]
229
+ Initial Block Size 256.0 KB
230
+ Current Block Size 256.0 KB
231
+ Peak Allocated Bytes 0 B
232
+ Overflow Count 0
233
+ [ALLOC_TEMP_Background Job.Worker 14]
234
+ Initial Block Size 32.0 KB
235
+ Current Block Size 32.0 KB
236
+ Peak Allocated Bytes 0 B
237
+ Overflow Count 0
238
+ [ALLOC_TEMP_Job.Worker 34]
239
+ Initial Block Size 256.0 KB
240
+ Current Block Size 256.0 KB
241
+ Peak Allocated Bytes 0 B
242
+ Overflow Count 0
243
+ [ALLOC_TEMP_Job.Worker 31]
244
+ Initial Block Size 256.0 KB
245
+ Current Block Size 256.0 KB
246
+ Peak Allocated Bytes 0 B
247
+ Overflow Count 0
248
+ [ALLOC_TEMP_Job.Worker 29]
249
+ Initial Block Size 256.0 KB
250
+ Current Block Size 256.0 KB
251
+ Peak Allocated Bytes 0 B
252
+ Overflow Count 0
253
+ [ALLOC_TEMP_Job.Worker 13]
254
+ Initial Block Size 256.0 KB
255
+ Current Block Size 256.0 KB
256
+ Peak Allocated Bytes 0 B
257
+ Overflow Count 0
258
+ [ALLOC_TEMP_EnlightenWorker] x 18
259
+ Initial Block Size 64.0 KB
260
+ Current Block Size 64.0 KB
261
+ Peak Allocated Bytes 0 B
262
+ Overflow Count 0
263
+ [ALLOC_TEMP_Background Job.Worker 15]
264
+ Initial Block Size 32.0 KB
265
+ Current Block Size 32.0 KB
266
+ Peak Allocated Bytes 0 B
267
+ Overflow Count 0
268
+ [ALLOC_TEMP_Background Job.Worker 2]
269
+ Initial Block Size 32.0 KB
270
+ Current Block Size 32.0 KB
271
+ Peak Allocated Bytes 0 B
272
+ Overflow Count 0
273
+ [ALLOC_TEMP_Job.Worker 28]
274
+ Initial Block Size 256.0 KB
275
+ Current Block Size 256.0 KB
276
+ Peak Allocated Bytes 0 B
277
+ Overflow Count 0
278
+ [ALLOC_TEMP_Job.Worker 22]
279
+ Initial Block Size 256.0 KB
280
+ Current Block Size 256.0 KB
281
+ Peak Allocated Bytes 0 B
282
+ Overflow Count 0
283
+ [ALLOC_TEMP_Background Job.Worker 7]
284
+ Initial Block Size 32.0 KB
285
+ Current Block Size 32.0 KB
286
+ Peak Allocated Bytes 0 B
287
+ Overflow Count 0
288
+ [ALLOC_TEMP_Job.Worker 9]
289
+ Initial Block Size 256.0 KB
290
+ Current Block Size 256.0 KB
291
+ Peak Allocated Bytes 0 B
292
+ Overflow Count 0
293
+ [ALLOC_TEMP_Job.Worker 8]
294
+ Initial Block Size 256.0 KB
295
+ Current Block Size 256.0 KB
296
+ Peak Allocated Bytes 0 B
297
+ Overflow Count 0
298
+ [ALLOC_TEMP_Job.Worker 7]
299
+ Initial Block Size 256.0 KB
300
+ Current Block Size 256.0 KB
301
+ Peak Allocated Bytes 0 B
302
+ Overflow Count 0
303
+ [ALLOC_TEMP_Job.Worker 32]
304
+ Initial Block Size 256.0 KB
305
+ Current Block Size 256.0 KB
306
+ Peak Allocated Bytes 0 B
307
+ Overflow Count 0
308
+ [ALLOC_TEMP_Job.Worker 23]
309
+ Initial Block Size 256.0 KB
310
+ Current Block Size 256.0 KB
311
+ Peak Allocated Bytes 0 B
312
+ Overflow Count 0
313
+ [ALLOC_TEMP_Job.Worker 1]
314
+ Initial Block Size 256.0 KB
315
+ Current Block Size 256.0 KB
316
+ Peak Allocated Bytes 0 B
317
+ Overflow Count 0
318
+ [ALLOC_TEMP_Job.Worker 33]
319
+ Initial Block Size 256.0 KB
320
+ Current Block Size 256.0 KB
321
+ Peak Allocated Bytes 0 B
322
+ Overflow Count 0
323
+ [ALLOC_TEMP_Job.Worker 10]
324
+ Initial Block Size 256.0 KB
325
+ Current Block Size 256.0 KB
326
+ Peak Allocated Bytes 0 B
327
+ Overflow Count 0
328
+ [ALLOC_TEMP_Job.Worker 15]
329
+ Initial Block Size 256.0 KB
330
+ Current Block Size 256.0 KB
331
+ Peak Allocated Bytes 0 B
332
+ Overflow Count 0
333
+ [ALLOC_TEMP_Job.Worker 24]
334
+ Initial Block Size 256.0 KB
335
+ Current Block Size 256.0 KB
336
+ Peak Allocated Bytes 0 B
337
+ Overflow Count 0
338
+ [ALLOC_TEMP_Job.Worker 12]
339
+ Initial Block Size 256.0 KB
340
+ Current Block Size 256.0 KB
341
+ Peak Allocated Bytes 0 B
342
+ Overflow Count 0
343
+ [ALLOC_TEMP_Job.Worker 19]
344
+ Initial Block Size 256.0 KB
345
+ Current Block Size 256.0 KB
346
+ Peak Allocated Bytes 0 B
347
+ Overflow Count 0
348
+ [ALLOC_TEMP_Loading.AsyncRead]
349
+ Initial Block Size 64.0 KB
350
+ Current Block Size 64.0 KB
351
+ Peak Allocated Bytes 256 B
352
+ Overflow Count 0
353
+ [ALLOC_DEFAULT] Dual Thread Allocator
354
+ Peak main deferred allocation count 38
355
+ [ALLOC_BUCKET]
356
+ Large Block size 4.0 MB
357
+ Used Block count 1
358
+ Peak Allocated bytes 1.4 MB
359
+ [ALLOC_DEFAULT_MAIN]
360
+ Peak usage frame count: [16.0 MB-32.0 MB]: 26767 frames
361
+ Requested Block Size 16.0 MB
362
+ Peak Block count 1
363
+ Peak Allocated memory 23.6 MB
364
+ Peak Large allocation bytes 16.0 MB
365
+ [ALLOC_DEFAULT_THREAD]
366
+ Peak usage frame count: [2.0 MB-4.0 MB]: 26767 frames
367
+ Requested Block Size 16.0 MB
368
+ Peak Block count 1
369
+ Peak Allocated memory 2.8 MB
370
+ Peak Large allocation bytes 0 B
371
+ [ALLOC_TEMP_JOB_1_FRAME]
372
+ Initial Block Size 2.0 MB
373
+ Used Block Count 1
374
+ Overflow Count (too large) 0
375
+ Overflow Count (full) 0
376
+ [ALLOC_TEMP_JOB_2_FRAMES]
377
+ Initial Block Size 2.0 MB
378
+ Used Block Count 1
379
+ Overflow Count (too large) 0
380
+ Overflow Count (full) 0
381
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
382
+ Initial Block Size 2.0 MB
383
+ Used Block Count 2
384
+ Overflow Count (too large) 0
385
+ Overflow Count (full) 0
386
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
387
+ Initial Block Size 1.0 MB
388
+ Used Block Count 3
389
+ Overflow Count (too large) 0
390
+ Overflow Count (full) 0
391
+ [ALLOC_GFX] Dual Thread Allocator
392
+ Peak main deferred allocation count 0
393
+ [ALLOC_BUCKET]
394
+ Large Block size 4.0 MB
395
+ Used Block count 1
396
+ Peak Allocated bytes 1.4 MB
397
+ [ALLOC_GFX_MAIN]
398
+ Peak usage frame count: [32.0 KB-64.0 KB]: 26766 frames, [64.0 KB-128.0 KB]: 1 frames
399
+ Requested Block Size 16.0 MB
400
+ Peak Block count 1
401
+ Peak Allocated memory 65.6 KB
402
+ Peak Large allocation bytes 0 B
403
+ [ALLOC_GFX_THREAD]
404
+ Peak usage frame count: [64.0 KB-128.0 KB]: 26767 frames
405
+ Requested Block Size 16.0 MB
406
+ Peak Block count 1
407
+ Peak Allocated memory 81.8 KB
408
+ Peak Large allocation bytes 0 B
409
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
410
+ Peak main deferred allocation count 0
411
+ [ALLOC_BUCKET]
412
+ Large Block size 4.0 MB
413
+ Used Block count 1
414
+ Peak Allocated bytes 1.4 MB
415
+ [ALLOC_CACHEOBJECTS_MAIN]
416
+ Peak usage frame count: [1.0 MB-2.0 MB]: 26766 frames, [16.0 MB-32.0 MB]: 1 frames
417
+ Requested Block Size 4.0 MB
418
+ Peak Block count 2
419
+ Peak Allocated memory 30.6 MB
420
+ Peak Large allocation bytes 24.9 MB
421
+ [ALLOC_CACHEOBJECTS_THREAD]
422
+ Peak usage frame count: [0.5 MB-1.0 MB]: 26766 frames, [2.0 MB-4.0 MB]: 1 frames
423
+ Requested Block Size 4.0 MB
424
+ Peak Block count 1
425
+ Peak Allocated memory 2.6 MB
426
+ Peak Large allocation bytes 0 B
427
+ [ALLOC_TYPETREE] Dual Thread Allocator
428
+ Peak main deferred allocation count 0
429
+ [ALLOC_BUCKET]
430
+ Large Block size 4.0 MB
431
+ Used Block count 1
432
+ Peak Allocated bytes 1.4 MB
433
+ [ALLOC_TYPETREE_MAIN]
434
+ Peak usage frame count: [0-1.0 KB]: 26767 frames
435
+ Requested Block Size 2.0 MB
436
+ Peak Block count 1
437
+ Peak Allocated memory 1.0 KB
438
+ Peak Large allocation bytes 0 B
439
+ [ALLOC_TYPETREE_THREAD]
440
+ Peak usage frame count: [4.0 KB-8.0 KB]: 26767 frames
441
+ Requested Block Size 2.0 MB
442
+ Peak Block count 1
443
+ Peak Allocated memory 7.3 KB
444
+ Peak Large allocation bytes 0 B
run_logs/timers.json ADDED
@@ -0,0 +1,362 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "gauges": {
4
+ "Huggy.Policy.Entropy.mean": {
5
+ "value": 1.4043161869049072,
6
+ "min": 1.4043161869049072,
7
+ "max": 1.4293899536132812,
8
+ "count": 40
9
+ },
10
+ "Huggy.Policy.Entropy.sum": {
11
+ "value": 70225.640625,
12
+ "min": 68646.609375,
13
+ "max": 77469.7890625,
14
+ "count": 40
15
+ },
16
+ "Huggy.Environment.EpisodeLength.mean": {
17
+ "value": 93.70208728652752,
18
+ "min": 78.72611464968153,
19
+ "max": 402.88709677419354,
20
+ "count": 40
21
+ },
22
+ "Huggy.Environment.EpisodeLength.sum": {
23
+ "value": 49381.0,
24
+ "min": 49201.0,
25
+ "max": 50264.0,
26
+ "count": 40
27
+ },
28
+ "Huggy.Step.mean": {
29
+ "value": 1999694.0,
30
+ "min": 49344.0,
31
+ "max": 1999694.0,
32
+ "count": 40
33
+ },
34
+ "Huggy.Step.sum": {
35
+ "value": 1999694.0,
36
+ "min": 49344.0,
37
+ "max": 1999694.0,
38
+ "count": 40
39
+ },
40
+ "Huggy.Policy.ExtrinsicValueEstimate.mean": {
41
+ "value": 2.3873391151428223,
42
+ "min": 0.17323459684848785,
43
+ "max": 2.5321223735809326,
44
+ "count": 40
45
+ },
46
+ "Huggy.Policy.ExtrinsicValueEstimate.sum": {
47
+ "value": 1258.127685546875,
48
+ "min": 21.3078556060791,
49
+ "max": 1540.7625732421875,
50
+ "count": 40
51
+ },
52
+ "Huggy.Environment.CumulativeReward.mean": {
53
+ "value": 3.5084869440864113,
54
+ "min": 1.9187798832005603,
55
+ "max": 4.066450367543509,
56
+ "count": 40
57
+ },
58
+ "Huggy.Environment.CumulativeReward.sum": {
59
+ "value": 1848.9726195335388,
60
+ "min": 236.0099256336689,
61
+ "max": 2401.586157441139,
62
+ "count": 40
63
+ },
64
+ "Huggy.Policy.ExtrinsicReward.mean": {
65
+ "value": 3.5084869440864113,
66
+ "min": 1.9187798832005603,
67
+ "max": 4.066450367543509,
68
+ "count": 40
69
+ },
70
+ "Huggy.Policy.ExtrinsicReward.sum": {
71
+ "value": 1848.9726195335388,
72
+ "min": 236.0099256336689,
73
+ "max": 2401.586157441139,
74
+ "count": 40
75
+ },
76
+ "Huggy.Losses.PolicyLoss.mean": {
77
+ "value": 0.01673149796552025,
78
+ "min": 0.013618242766662863,
79
+ "max": 0.02033802231477845,
80
+ "count": 40
81
+ },
82
+ "Huggy.Losses.PolicyLoss.sum": {
83
+ "value": 0.05019449389656074,
84
+ "min": 0.029838838606277326,
85
+ "max": 0.05519322702117885,
86
+ "count": 40
87
+ },
88
+ "Huggy.Losses.ValueLoss.mean": {
89
+ "value": 0.04710768395000034,
90
+ "min": 0.02154293234149615,
91
+ "max": 0.06202678922563791,
92
+ "count": 40
93
+ },
94
+ "Huggy.Losses.ValueLoss.sum": {
95
+ "value": 0.14132305185000102,
96
+ "min": 0.0430858646829923,
97
+ "max": 0.1759417314082384,
98
+ "count": 40
99
+ },
100
+ "Huggy.Policy.LearningRate.mean": {
101
+ "value": 3.3894488702166678e-06,
102
+ "min": 3.3894488702166678e-06,
103
+ "max": 0.00029532322655892495,
104
+ "count": 40
105
+ },
106
+ "Huggy.Policy.LearningRate.sum": {
107
+ "value": 1.0168346610650004e-05,
108
+ "min": 1.0168346610650004e-05,
109
+ "max": 0.0008441026686324498,
110
+ "count": 40
111
+ },
112
+ "Huggy.Policy.Epsilon.mean": {
113
+ "value": 0.10112978333333338,
114
+ "min": 0.10112978333333338,
115
+ "max": 0.198441075,
116
+ "count": 40
117
+ },
118
+ "Huggy.Policy.Epsilon.sum": {
119
+ "value": 0.3033893500000001,
120
+ "min": 0.20751895000000006,
121
+ "max": 0.5813675500000002,
122
+ "count": 40
123
+ },
124
+ "Huggy.Policy.Beta.mean": {
125
+ "value": 6.637618833333336e-05,
126
+ "min": 6.637618833333336e-05,
127
+ "max": 0.004922209642500001,
128
+ "count": 40
129
+ },
130
+ "Huggy.Policy.Beta.sum": {
131
+ "value": 0.0001991285650000001,
132
+ "min": 0.0001991285650000001,
133
+ "max": 0.014070240745,
134
+ "count": 40
135
+ },
136
+ "Huggy.IsTraining.mean": {
137
+ "value": 1.0,
138
+ "min": 1.0,
139
+ "max": 1.0,
140
+ "count": 40
141
+ },
142
+ "Huggy.IsTraining.sum": {
143
+ "value": 1.0,
144
+ "min": 1.0,
145
+ "max": 1.0,
146
+ "count": 40
147
+ }
148
+ },
149
+ "metadata": {
150
+ "timer_format_version": "0.1.0",
151
+ "start_time_seconds": "1709780159",
152
+ "python_version": "3.10.12 (main, Jul 5 2023, 18:54:27) [GCC 11.2.0]",
153
+ "command_line_arguments": "/home/dl/miniconda3/envs/huggydog/bin/mlagents-learn ./config/ppo/Huggy.yaml --env=./ml-agents/trained-envs-executables/linux/Huggy/Huggy --run-id=Huggy2 --no-graphics",
154
+ "mlagents_version": "1.1.0.dev0",
155
+ "mlagents_envs_version": "1.1.0.dev0",
156
+ "communication_protocol_version": "1.5.0",
157
+ "pytorch_version": "2.2.1+cu121",
158
+ "numpy_version": "1.23.5",
159
+ "end_time_seconds": "1709782039"
160
+ },
161
+ "total": 1879.6682417130069,
162
+ "count": 1,
163
+ "self": 0.37042218299757224,
164
+ "children": {
165
+ "run_training.setup": {
166
+ "total": 0.014723974003572948,
167
+ "count": 1,
168
+ "self": 0.014723974003572948
169
+ },
170
+ "TrainerController.start_learning": {
171
+ "total": 1879.2830955560057,
172
+ "count": 1,
173
+ "self": 2.54108033022203,
174
+ "children": {
175
+ "TrainerController._reset_env": {
176
+ "total": 1.8699685909959953,
177
+ "count": 1,
178
+ "self": 1.8699685909959953
179
+ },
180
+ "TrainerController.advance": {
181
+ "total": 1874.7994812977995,
182
+ "count": 232779,
183
+ "self": 2.558264800449251,
184
+ "children": {
185
+ "env_step": {
186
+ "total": 1550.595442928592,
187
+ "count": 232779,
188
+ "self": 1337.2712454085413,
189
+ "children": {
190
+ "SubprocessEnvManager._take_step": {
191
+ "total": 211.66019222827163,
192
+ "count": 232779,
193
+ "self": 10.874052669401863,
194
+ "children": {
195
+ "TorchPolicy.evaluate": {
196
+ "total": 200.78613955886976,
197
+ "count": 223052,
198
+ "self": 200.78613955886976
199
+ }
200
+ }
201
+ },
202
+ "workers": {
203
+ "total": 1.6640052917791763,
204
+ "count": 232779,
205
+ "self": 0.0,
206
+ "children": {
207
+ "worker_root": {
208
+ "total": 1872.5450671652943,
209
+ "count": 232779,
210
+ "is_parallel": true,
211
+ "self": 768.6756163278042,
212
+ "children": {
213
+ "run_training.setup": {
214
+ "total": 0.0,
215
+ "count": 0,
216
+ "is_parallel": true,
217
+ "self": 0.0,
218
+ "children": {
219
+ "steps_from_proto": {
220
+ "total": 0.0006918449944350868,
221
+ "count": 1,
222
+ "is_parallel": true,
223
+ "self": 0.00016549299471080303,
224
+ "children": {
225
+ "_process_rank_one_or_two_observation": {
226
+ "total": 0.0005263519997242838,
227
+ "count": 2,
228
+ "is_parallel": true,
229
+ "self": 0.0005263519997242838
230
+ }
231
+ }
232
+ },
233
+ "UnityEnvironment.step": {
234
+ "total": 0.026213526012725197,
235
+ "count": 1,
236
+ "is_parallel": true,
237
+ "self": 0.0004118140059290454,
238
+ "children": {
239
+ "UnityEnvironment._generate_step_input": {
240
+ "total": 0.00025094300508499146,
241
+ "count": 1,
242
+ "is_parallel": true,
243
+ "self": 0.00025094300508499146
244
+ },
245
+ "communicator.exchange": {
246
+ "total": 0.02152034200844355,
247
+ "count": 1,
248
+ "is_parallel": true,
249
+ "self": 0.02152034200844355
250
+ },
251
+ "steps_from_proto": {
252
+ "total": 0.004030426993267611,
253
+ "count": 1,
254
+ "is_parallel": true,
255
+ "self": 0.00025552000442985445,
256
+ "children": {
257
+ "_process_rank_one_or_two_observation": {
258
+ "total": 0.003774906988837756,
259
+ "count": 2,
260
+ "is_parallel": true,
261
+ "self": 0.003774906988837756
262
+ }
263
+ }
264
+ }
265
+ }
266
+ }
267
+ }
268
+ },
269
+ "UnityEnvironment.step": {
270
+ "total": 1103.8694508374901,
271
+ "count": 232778,
272
+ "is_parallel": true,
273
+ "self": 32.88515648544126,
274
+ "children": {
275
+ "UnityEnvironment._generate_step_input": {
276
+ "total": 67.98563811712665,
277
+ "count": 232778,
278
+ "is_parallel": true,
279
+ "self": 67.98563811712665
280
+ },
281
+ "communicator.exchange": {
282
+ "total": 926.8408511440066,
283
+ "count": 232778,
284
+ "is_parallel": true,
285
+ "self": 926.8408511440066
286
+ },
287
+ "steps_from_proto": {
288
+ "total": 76.15780509091564,
289
+ "count": 232778,
290
+ "is_parallel": true,
291
+ "self": 28.292735317416373,
292
+ "children": {
293
+ "_process_rank_one_or_two_observation": {
294
+ "total": 47.86506977349927,
295
+ "count": 465556,
296
+ "is_parallel": true,
297
+ "self": 47.86506977349927
298
+ }
299
+ }
300
+ }
301
+ }
302
+ }
303
+ }
304
+ }
305
+ }
306
+ }
307
+ }
308
+ },
309
+ "trainer_advance": {
310
+ "total": 321.64577356875816,
311
+ "count": 232779,
312
+ "self": 4.687268801877508,
313
+ "children": {
314
+ "process_trajectory": {
315
+ "total": 106.18434272368904,
316
+ "count": 232779,
317
+ "self": 105.32958651668741,
318
+ "children": {
319
+ "RLTrainer._checkpoint": {
320
+ "total": 0.8547562070016284,
321
+ "count": 10,
322
+ "self": 0.8547562070016284
323
+ }
324
+ }
325
+ },
326
+ "_update_policy": {
327
+ "total": 210.7741620431916,
328
+ "count": 97,
329
+ "self": 166.00863801331434,
330
+ "children": {
331
+ "TorchPPOOptimizer.update": {
332
+ "total": 44.76552402987727,
333
+ "count": 2910,
334
+ "self": 44.76552402987727
335
+ }
336
+ }
337
+ }
338
+ }
339
+ }
340
+ }
341
+ },
342
+ "trainer_threads": {
343
+ "total": 6.729969754815102e-07,
344
+ "count": 1,
345
+ "self": 6.729969754815102e-07
346
+ },
347
+ "TrainerController._save_models": {
348
+ "total": 0.07256466399121564,
349
+ "count": 1,
350
+ "self": 0.0012088859948562458,
351
+ "children": {
352
+ "RLTrainer._checkpoint": {
353
+ "total": 0.07135577799635939,
354
+ "count": 1,
355
+ "self": 0.07135577799635939
356
+ }
357
+ }
358
+ }
359
+ }
360
+ }
361
+ }
362
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Huggy": {
3
+ "checkpoints": [
4
+ {
5
+ "steps": 199965,
6
+ "file_path": "results/Huggy2/Huggy/Huggy-199965.onnx",
7
+ "reward": 3.355577230453491,
8
+ "creation_time": 1709780346.3566837,
9
+ "auxillary_file_paths": [
10
+ "results/Huggy2/Huggy/Huggy-199965.pt"
11
+ ]
12
+ },
13
+ {
14
+ "steps": 399876,
15
+ "file_path": "results/Huggy2/Huggy/Huggy-399876.onnx",
16
+ "reward": 3.6707670069360114,
17
+ "creation_time": 1709780533.2513127,
18
+ "auxillary_file_paths": [
19
+ "results/Huggy2/Huggy/Huggy-399876.pt"
20
+ ]
21
+ },
22
+ {
23
+ "steps": 599938,
24
+ "file_path": "results/Huggy2/Huggy/Huggy-599938.onnx",
25
+ "reward": 3.7572870373725893,
26
+ "creation_time": 1709780724.741106,
27
+ "auxillary_file_paths": [
28
+ "results/Huggy2/Huggy/Huggy-599938.pt"
29
+ ]
30
+ },
31
+ {
32
+ "steps": 799999,
33
+ "file_path": "results/Huggy2/Huggy/Huggy-799999.onnx",
34
+ "reward": 4.013145650978442,
35
+ "creation_time": 1709780912.1195085,
36
+ "auxillary_file_paths": [
37
+ "results/Huggy2/Huggy/Huggy-799999.pt"
38
+ ]
39
+ },
40
+ {
41
+ "steps": 999960,
42
+ "file_path": "results/Huggy2/Huggy/Huggy-999960.onnx",
43
+ "reward": 3.617682059476902,
44
+ "creation_time": 1709781097.6134994,
45
+ "auxillary_file_paths": [
46
+ "results/Huggy2/Huggy/Huggy-999960.pt"
47
+ ]
48
+ },
49
+ {
50
+ "steps": 1199906,
51
+ "file_path": "results/Huggy2/Huggy/Huggy-1199906.onnx",
52
+ "reward": 3.589572944424369,
53
+ "creation_time": 1709781284.8103502,
54
+ "auxillary_file_paths": [
55
+ "results/Huggy2/Huggy/Huggy-1199906.pt"
56
+ ]
57
+ },
58
+ {
59
+ "steps": 1399975,
60
+ "file_path": "results/Huggy2/Huggy/Huggy-1399975.onnx",
61
+ "reward": 3.983882831490558,
62
+ "creation_time": 1709781477.382651,
63
+ "auxillary_file_paths": [
64
+ "results/Huggy2/Huggy/Huggy-1399975.pt"
65
+ ]
66
+ },
67
+ {
68
+ "steps": 1599952,
69
+ "file_path": "results/Huggy2/Huggy/Huggy-1599952.onnx",
70
+ "reward": 4.092673609828391,
71
+ "creation_time": 1709781664.6698492,
72
+ "auxillary_file_paths": [
73
+ "results/Huggy2/Huggy/Huggy-1599952.pt"
74
+ ]
75
+ },
76
+ {
77
+ "steps": 1799980,
78
+ "file_path": "results/Huggy2/Huggy/Huggy-1799980.onnx",
79
+ "reward": 3.6741721985720788,
80
+ "creation_time": 1709781853.1473362,
81
+ "auxillary_file_paths": [
82
+ "results/Huggy2/Huggy/Huggy-1799980.pt"
83
+ ]
84
+ },
85
+ {
86
+ "steps": 1999694,
87
+ "file_path": "results/Huggy2/Huggy/Huggy-1999694.onnx",
88
+ "reward": 4.190992745486173,
89
+ "creation_time": 1709782038.9111905,
90
+ "auxillary_file_paths": [
91
+ "results/Huggy2/Huggy/Huggy-1999694.pt"
92
+ ]
93
+ },
94
+ {
95
+ "steps": 2000444,
96
+ "file_path": "results/Huggy2/Huggy/Huggy-2000444.onnx",
97
+ "reward": 3.8372950761214546,
98
+ "creation_time": 1709782039.0045316,
99
+ "auxillary_file_paths": [
100
+ "results/Huggy2/Huggy/Huggy-2000444.pt"
101
+ ]
102
+ }
103
+ ],
104
+ "final_checkpoint": {
105
+ "steps": 2000444,
106
+ "file_path": "results/Huggy2/Huggy.onnx",
107
+ "reward": 3.8372950761214546,
108
+ "creation_time": 1709782039.0045316,
109
+ "auxillary_file_paths": [
110
+ "results/Huggy2/Huggy/Huggy-2000444.pt"
111
+ ]
112
+ }
113
+ },
114
+ "metadata": {
115
+ "stats_format_version": "0.3.0",
116
+ "mlagents_version": "1.1.0.dev0",
117
+ "torch_version": "2.2.1+cu121"
118
+ }
119
+ }