Adi070204 commited on
Commit
b0313cf
·
verified ·
1 Parent(s): e3be15e

Final PPO + Curiosity model trained for 10M steps using Optuna best parameters

Browse files
Pyramids.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5b88ac4622db45d719d7aedd91ac4d4e26e23009c3f8f59c964dfda1f029ab6
3
+ size 1420238
Pyramids/Pyramids-10000092.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5b88ac4622db45d719d7aedd91ac4d4e26e23009c3f8f59c964dfda1f029ab6
3
+ size 1420238
Pyramids/Pyramids-10000092.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b88e8c472fe71123e8fa8332906e954fb2e04741f856d572f876cea0a7a68f05
3
+ size 10002540
Pyramids/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da7b6d710bc7b031b036d3271dfadf646f59de2311e208610b0db2b4814f5fde
3
+ size 10001973
Pyramids/events.out.tfevents.1767769877.MSI.30528.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15f332014eefc956dbdfcff08a6973c3f1f2d78e8e40efe4217e80ba6268a081
3
+ size 2806201
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: ml-agents
3
+ tags:
4
+ - Pyramids
5
+ - deep-reinforcement-learning
6
+ - reinforcement-learning
7
+ - ML-Agents-Pyramids
8
+ ---
9
+
10
+ # **ppo** Agent playing **Pyramids**
11
+ This is a trained model of a **ppo** agent playing **Pyramids**
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: Adi070204/Pyramids
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": {"Pyramids": {"trainer_type": "ppo", "hyperparameters": {"batch_size": 256, "buffer_size": 8192, "learning_rate": 0.0001372997890189161, "beta": 0.01351357680858339, "epsilon": 0.17507156497694998, "lambd": 0.938254088365818, "num_epoch": 4, "shared_critic": false, "learning_rate_schedule": "linear", "beta_schedule": "linear", "epsilon_schedule": "linear"}, "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}}, "curiosity": {"gamma": 0.99, "strength": 0.03179884085275296, "network_settings": {"normalize": false, "hidden_units": 256, "num_layers": 2, "vis_encode_type": "simple", "memory": null, "goal_conditioning_type": "hyper", "deterministic": false}, "learning_rate": 1.1017411344137119e-05, "encoding_size": null}}, "init_path": null, "keep_checkpoints": 1, "even_checkpoints": false, "max_steps": 10000000, "time_horizon": 128, "summary_freq": 20000, "threaded": false, "self_play": null, "behavioral_cloning": null}}, "env_settings": {"env_path": "Builds\\UnityEnvironment.exe", "env_args": null, "base_port": 8000, "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.0, "target_frame_rate": -1, "capture_frame_rate": 60, "no_graphics": true, "no_graphics_monitor": false}, "environment_parameters": null, "checkpoint_settings": {"run_id": "pyramids_final_best", "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,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_settings: null
2
+ behaviors:
3
+ Pyramids:
4
+ trainer_type: ppo
5
+ hyperparameters:
6
+ batch_size: 256
7
+ buffer_size: 8192
8
+ learning_rate: 0.0001372997890189161
9
+ beta: 0.01351357680858339
10
+ epsilon: 0.17507156497694998
11
+ lambd: 0.938254088365818
12
+ num_epoch: 4
13
+ shared_critic: false
14
+ learning_rate_schedule: linear
15
+ beta_schedule: linear
16
+ epsilon_schedule: linear
17
+ checkpoint_interval: 500000
18
+ network_settings:
19
+ normalize: false
20
+ hidden_units: 512
21
+ num_layers: 2
22
+ vis_encode_type: simple
23
+ memory: null
24
+ goal_conditioning_type: hyper
25
+ deterministic: false
26
+ reward_signals:
27
+ extrinsic:
28
+ gamma: 0.99
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
+ curiosity:
39
+ gamma: 0.99
40
+ strength: 0.03179884085275296
41
+ network_settings:
42
+ normalize: false
43
+ hidden_units: 256
44
+ num_layers: 2
45
+ vis_encode_type: simple
46
+ memory: null
47
+ goal_conditioning_type: hyper
48
+ deterministic: false
49
+ learning_rate: 1.1017411344137119e-05
50
+ encoding_size: null
51
+ init_path: null
52
+ keep_checkpoints: 1
53
+ even_checkpoints: false
54
+ max_steps: 10000000
55
+ time_horizon: 128
56
+ summary_freq: 20000
57
+ threaded: false
58
+ self_play: null
59
+ behavioral_cloning: null
60
+ env_settings:
61
+ env_path: Builds\UnityEnvironment.exe
62
+ env_args: null
63
+ base_port: 8000
64
+ num_envs: 1
65
+ num_areas: 1
66
+ timeout_wait: 60
67
+ seed: -1
68
+ max_lifetime_restarts: 10
69
+ restarts_rate_limit_n: 1
70
+ restarts_rate_limit_period_s: 60
71
+ engine_settings:
72
+ width: 84
73
+ height: 84
74
+ quality_level: 5
75
+ time_scale: 20.0
76
+ target_frame_rate: -1
77
+ capture_frame_rate: 60
78
+ no_graphics: true
79
+ no_graphics_monitor: false
80
+ environment_parameters: null
81
+ checkpoint_settings:
82
+ run_id: pyramids_final_best
83
+ initialize_from: null
84
+ load_model: false
85
+ resume: false
86
+ force: true
87
+ train_model: false
88
+ inference: false
89
+ results_dir: results
90
+ torch_settings:
91
+ device: null
92
+ debug: false
run_logs/Player-0.log ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = 'C:/python/Reinforcement-Learning/ml-agents/Builds/UnityEnvironment_Data/Managed'
2
+ Mono config path = 'C:/python/Reinforcement-Learning/ml-agents/Builds/MonoBleedingEdge/etc'
3
+ Input System module state changed to: Initialized.
4
+ [Physics::Module] Initialized fallback backend.
5
+ [Physics::Module] Id: 0xdecafbad
6
+ Initialize engine version: 6000.0.40f1 (157d81624ddf)
7
+ [Subsystems] Discovering subsystems at path C:/python/Reinforcement-Learning/ml-agents/Builds/UnityEnvironment_Data/UnitySubsystems
8
+ Forcing GfxDevice: Null
9
+ GfxDevice: creating device client; kGfxThreadingModeNonThreaded
10
+ NullGfxDevice:
11
+ Version: NULL 1.0 [1.0]
12
+ Renderer: Null Device
13
+ Vendor: Unity Technologies
14
+ Begin MonoManager ReloadAssembly
15
+ - Loaded All Assemblies, in 0.171 seconds
16
+ - Finished resetting the current domain, in 0.003 seconds
17
+ [Physics::Module] Selected backend.
18
+ [Physics::Module] Name: PhysX
19
+ [Physics::Module] Id: 0xf2b8ea05
20
+ [Physics::Module] SDK Version: 4.1.2
21
+ [Physics::Module] Integration Version: 1.0.0
22
+ [Physics::Module] Threading Mode: Multi-Threaded
23
+ ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
24
+ 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.
25
+ ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
26
+ ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
27
+ WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - All subshaders removed
28
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
29
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
30
+ ERROR: Shader Legacy Shaders/Diffuse shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
31
+ WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - 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
+ WARNING: Shader Unsupported: 'Autodesk Interactive' - All subshaders removed
35
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
36
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
37
+ ERROR: Shader Autodesk Interactive shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
38
+ WARNING: Shader Unsupported: 'Autodesk Interactive' - All subshaders removed
39
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
40
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
41
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
42
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
43
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
44
+ ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
45
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
46
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
47
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
48
+ WARNING: Shader Unsupported: 'ML-Agents/GridPattern' - All subshaders removed
49
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
50
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
51
+ ERROR: Shader ML-Agents/GridPattern shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
52
+ WARNING: Shader Unsupported: 'ML-Agents/GridPattern' - All subshaders removed
53
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
54
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
55
+ UnloadTime: 0.464900 ms
56
+ Registered Communicator in Agent.
57
+ ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
58
+ [Physics::Module] Cleanup current backned.
59
+ [Physics::Module] Id: 0xf2b8ea05
60
+ Input System module state changed to: ShutdownInProgress.
61
+ Input System polling thread exited.
62
+ Input System module state changed to: Shutdown.
run_logs/timers.json ADDED
@@ -0,0 +1,368 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "gauges": {
4
+ "Pyramids.Policy.Entropy.mean": {
5
+ "value": 0.11422315239906311,
6
+ "min": 0.10635818541049957,
7
+ "max": 1.6032832860946655,
8
+ "count": 500
9
+ },
10
+ "Pyramids.Policy.Entropy.sum": {
11
+ "value": 2288.1181640625,
12
+ "min": 2093.129150390625,
13
+ "max": 32219.58203125,
14
+ "count": 500
15
+ },
16
+ "Pyramids.Step.mean": {
17
+ "value": 9999964.0,
18
+ "min": 19968.0,
19
+ "max": 9999964.0,
20
+ "count": 500
21
+ },
22
+ "Pyramids.Step.sum": {
23
+ "value": 9999964.0,
24
+ "min": 19968.0,
25
+ "max": 9999964.0,
26
+ "count": 500
27
+ },
28
+ "Pyramids.Policy.ExtrinsicValueEstimate.mean": {
29
+ "value": 0.8705893158912659,
30
+ "min": -0.08696519583463669,
31
+ "max": 0.9940770268440247,
32
+ "count": 500
33
+ },
34
+ "Pyramids.Policy.ExtrinsicValueEstimate.sum": {
35
+ "value": 174.11785888671875,
36
+ "min": -14.001396179199219,
37
+ "max": 211.3995361328125,
38
+ "count": 500
39
+ },
40
+ "Pyramids.Policy.CuriosityValueEstimate.mean": {
41
+ "value": 0.10578813403844833,
42
+ "min": 0.10449855774641037,
43
+ "max": 4.689557075500488,
44
+ "count": 500
45
+ },
46
+ "Pyramids.Policy.CuriosityValueEstimate.sum": {
47
+ "value": 21.15762710571289,
48
+ "min": 20.89971160888672,
49
+ "max": 753.0303955078125,
50
+ "count": 500
51
+ },
52
+ "Pyramids.Losses.PolicyLoss.mean": {
53
+ "value": 0.05006951541872695,
54
+ "min": 0.04121422056505253,
55
+ "max": 0.058810766625499944,
56
+ "count": 500
57
+ },
58
+ "Pyramids.Losses.PolicyLoss.sum": {
59
+ "value": 0.1001390308374539,
60
+ "min": 0.04986661850416567,
61
+ "max": 0.16531687479982793,
62
+ "count": 500
63
+ },
64
+ "Pyramids.Losses.ValueLoss.mean": {
65
+ "value": 0.009665742996730842,
66
+ "min": 0.0007032624918846362,
67
+ "max": 0.2743947749001611,
68
+ "count": 500
69
+ },
70
+ "Pyramids.Losses.ValueLoss.sum": {
71
+ "value": 0.019331485993461683,
72
+ "min": 0.0014065249837692724,
73
+ "max": 0.5487895498003222,
74
+ "count": 500
75
+ },
76
+ "Pyramids.Policy.LearningRate.mean": {
77
+ "value": 1.6590310445924732e-07,
78
+ "min": 1.6590310445924732e-07,
79
+ "max": 0.0001371591941373607,
80
+ "count": 500
81
+ },
82
+ "Pyramids.Policy.LearningRate.sum": {
83
+ "value": 3.3180620891849464e-07,
84
+ "min": 3.3180620891849464e-07,
85
+ "max": 0.00040818917248026574,
86
+ "count": 500
87
+ },
88
+ "Pyramids.Policy.Epsilon.mean": {
89
+ "value": 0.10009065642186618,
90
+ "min": 0.10009065642186618,
91
+ "max": 0.1749946916944136,
92
+ "count": 500
93
+ },
94
+ "Pyramids.Policy.Epsilon.sum": {
95
+ "value": 0.20018131284373236,
96
+ "min": 0.1749946916944136,
97
+ "max": 0.5231860660591037,
98
+ "count": 500
99
+ },
100
+ "Pyramids.Policy.Beta.mean": {
101
+ "value": 2.630691935404572e-05,
102
+ "min": 2.630691935404572e-05,
103
+ "max": 0.0134997491459314,
104
+ "count": 500
105
+ },
106
+ "Pyramids.Policy.Beta.sum": {
107
+ "value": 5.261383870809144e-05,
108
+ "min": 5.261383870809144e-05,
109
+ "max": 0.04017582867108255,
110
+ "count": 500
111
+ },
112
+ "Pyramids.Losses.CuriosityForwardLoss.mean": {
113
+ "value": 0.024805564935377333,
114
+ "min": 0.022652438281511422,
115
+ "max": 5.399273802340031,
116
+ "count": 500
117
+ },
118
+ "Pyramids.Losses.CuriosityForwardLoss.sum": {
119
+ "value": 0.04961112987075467,
120
+ "min": 0.045304876563022844,
121
+ "max": 5.430380754878646,
122
+ "count": 500
123
+ },
124
+ "Pyramids.Losses.CuriosityInverseLoss.mean": {
125
+ "value": 0.01703787657424982,
126
+ "min": 0.012451664861146128,
127
+ "max": 1.5587653540074826,
128
+ "count": 500
129
+ },
130
+ "Pyramids.Losses.CuriosityInverseLoss.sum": {
131
+ "value": 0.03407575314849964,
132
+ "min": 0.024903329722292256,
133
+ "max": 2.800841969761409,
134
+ "count": 500
135
+ },
136
+ "Pyramids.Environment.EpisodeLength.mean": {
137
+ "value": 190.90196078431373,
138
+ "min": 168.5137614678899,
139
+ "max": 999.0,
140
+ "count": 500
141
+ },
142
+ "Pyramids.Environment.EpisodeLength.sum": {
143
+ "value": 19472.0,
144
+ "min": 14919.0,
145
+ "max": 31968.0,
146
+ "count": 500
147
+ },
148
+ "Pyramids.Environment.CumulativeReward.mean": {
149
+ "value": 1.8090980330518647,
150
+ "min": -1.0000000521540642,
151
+ "max": 1.8314862271787924,
152
+ "count": 500
153
+ },
154
+ "Pyramids.Environment.CumulativeReward.sum": {
155
+ "value": 184.5279993712902,
156
+ "min": -31.00000161677599,
157
+ "max": 213.67299868166447,
158
+ "count": 500
159
+ },
160
+ "Pyramids.Policy.ExtrinsicReward.mean": {
161
+ "value": 1.8090980330518647,
162
+ "min": -1.0000000521540642,
163
+ "max": 1.8314862271787924,
164
+ "count": 500
165
+ },
166
+ "Pyramids.Policy.ExtrinsicReward.sum": {
167
+ "value": 184.5279993712902,
168
+ "min": -31.00000161677599,
169
+ "max": 213.67299868166447,
170
+ "count": 500
171
+ },
172
+ "Pyramids.Policy.CuriosityReward.mean": {
173
+ "value": 0.15285808866496617,
174
+ "min": 0.1338517680683603,
175
+ "max": 102.52869310975075,
176
+ "count": 500
177
+ },
178
+ "Pyramids.Policy.CuriosityReward.sum": {
179
+ "value": 15.59152504382655,
180
+ "min": 13.920583879109472,
181
+ "max": 1691.8864068984985,
182
+ "count": 500
183
+ },
184
+ "Pyramids.IsTraining.mean": {
185
+ "value": 1.0,
186
+ "min": 1.0,
187
+ "max": 1.0,
188
+ "count": 500
189
+ },
190
+ "Pyramids.IsTraining.sum": {
191
+ "value": 1.0,
192
+ "min": 1.0,
193
+ "max": 1.0,
194
+ "count": 500
195
+ }
196
+ },
197
+ "metadata": {
198
+ "timer_format_version": "0.1.0",
199
+ "start_time_seconds": "1767769871",
200
+ "python_version": "3.10.11 (tags/v3.10.11:7d4cc5a, Apr 5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]",
201
+ "command_line_arguments": "C:\\python\\Reinforcement-Learning\\ml-agents\\.venv\\Scripts\\mlagents-learn optuna_runs\\pyramids_final_best\\final_config.yaml --env Builds\\UnityEnvironment.exe --run-id pyramids_final_best --base-port 8000 --num-envs 1 --force --time-scale 20 --no-graphics",
202
+ "mlagents_version": "1.2.0.dev0",
203
+ "mlagents_envs_version": "1.2.0.dev0",
204
+ "communication_protocol_version": "1.5.0",
205
+ "pytorch_version": "2.8.0+cpu",
206
+ "numpy_version": "1.23.5",
207
+ "end_time_seconds": "1767788027"
208
+ },
209
+ "total": 18156.34620270005,
210
+ "count": 1,
211
+ "self": 0.4155688000610098,
212
+ "children": {
213
+ "run_training.setup": {
214
+ "total": 0.15365290001500398,
215
+ "count": 1,
216
+ "self": 0.15365290001500398
217
+ },
218
+ "TrainerController.start_learning": {
219
+ "total": 18155.776980999974,
220
+ "count": 1,
221
+ "self": 15.2952946331352,
222
+ "children": {
223
+ "TrainerController._reset_env": {
224
+ "total": 7.230988299939781,
225
+ "count": 1,
226
+ "self": 7.230988299939781
227
+ },
228
+ "TrainerController.advance": {
229
+ "total": 18133.08894036687,
230
+ "count": 659181,
231
+ "self": 14.994775475468487,
232
+ "children": {
233
+ "env_step": {
234
+ "total": 9079.980078772176,
235
+ "count": 659181,
236
+ "self": 7798.481798222056,
237
+ "children": {
238
+ "SubprocessEnvManager._take_step": {
239
+ "total": 1271.3684725227067,
240
+ "count": 659181,
241
+ "self": 44.13604481180664,
242
+ "children": {
243
+ "TorchPolicy.evaluate": {
244
+ "total": 1227.2324277109,
245
+ "count": 625065,
246
+ "self": 1227.2324277109
247
+ }
248
+ }
249
+ },
250
+ "workers": {
251
+ "total": 10.129808027413674,
252
+ "count": 659181,
253
+ "self": 0.0,
254
+ "children": {
255
+ "worker_root": {
256
+ "total": 18128.24424395815,
257
+ "count": 659181,
258
+ "is_parallel": true,
259
+ "self": 11425.022673878819,
260
+ "children": {
261
+ "steps_from_proto": {
262
+ "total": 0.002118999953381717,
263
+ "count": 1,
264
+ "is_parallel": true,
265
+ "self": 0.0002384998369961977,
266
+ "children": {
267
+ "_process_rank_one_or_two_observation": {
268
+ "total": 0.0018805001163855195,
269
+ "count": 8,
270
+ "is_parallel": true,
271
+ "self": 0.0018805001163855195
272
+ }
273
+ }
274
+ },
275
+ "UnityEnvironment.step": {
276
+ "total": 6703.219451079378,
277
+ "count": 659181,
278
+ "is_parallel": true,
279
+ "self": 202.9730432110373,
280
+ "children": {
281
+ "UnityEnvironment._generate_step_input": {
282
+ "total": 169.48975574749056,
283
+ "count": 659181,
284
+ "is_parallel": true,
285
+ "self": 169.48975574749056
286
+ },
287
+ "communicator.exchange": {
288
+ "total": 5697.137891348568,
289
+ "count": 659181,
290
+ "is_parallel": true,
291
+ "self": 5697.137891348568
292
+ },
293
+ "steps_from_proto": {
294
+ "total": 633.6187607722823,
295
+ "count": 659181,
296
+ "is_parallel": true,
297
+ "self": 150.71688713051844,
298
+ "children": {
299
+ "_process_rank_one_or_two_observation": {
300
+ "total": 482.9018736417638,
301
+ "count": 5273448,
302
+ "is_parallel": true,
303
+ "self": 482.9018736417638
304
+ }
305
+ }
306
+ }
307
+ }
308
+ }
309
+ }
310
+ }
311
+ }
312
+ }
313
+ }
314
+ },
315
+ "trainer_advance": {
316
+ "total": 9038.114086119225,
317
+ "count": 659181,
318
+ "self": 24.974240463227034,
319
+ "children": {
320
+ "process_trajectory": {
321
+ "total": 1428.586373554077,
322
+ "count": 659181,
323
+ "self": 1427.2644285539864,
324
+ "children": {
325
+ "RLTrainer._checkpoint": {
326
+ "total": 1.3219450000906363,
327
+ "count": 20,
328
+ "self": 1.3219450000906363
329
+ }
330
+ }
331
+ },
332
+ "_update_policy": {
333
+ "total": 7584.553472101921,
334
+ "count": 1207,
335
+ "self": 5087.527661683969,
336
+ "children": {
337
+ "TorchPPOOptimizer.update": {
338
+ "total": 2497.025810417952,
339
+ "count": 154944,
340
+ "self": 2497.025810417952
341
+ }
342
+ }
343
+ }
344
+ }
345
+ }
346
+ }
347
+ },
348
+ "trainer_threads": {
349
+ "total": 5.00003807246685e-07,
350
+ "count": 1,
351
+ "self": 5.00003807246685e-07
352
+ },
353
+ "TrainerController._save_models": {
354
+ "total": 0.16175720002502203,
355
+ "count": 1,
356
+ "self": 0.1135820000199601,
357
+ "children": {
358
+ "RLTrainer._checkpoint": {
359
+ "total": 0.048175200005061924,
360
+ "count": 1,
361
+ "self": 0.048175200005061924
362
+ }
363
+ }
364
+ }
365
+ }
366
+ }
367
+ }
368
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Pyramids": {
3
+ "checkpoints": [
4
+ {
5
+ "steps": 10000092,
6
+ "file_path": "results\\pyramids_final_best\\Pyramids\\Pyramids-10000092.onnx",
7
+ "reward": 1.8061499949544668,
8
+ "creation_time": 1767788027.3648493,
9
+ "auxillary_file_paths": [
10
+ "results\\pyramids_final_best\\Pyramids\\Pyramids-10000092.pt"
11
+ ]
12
+ }
13
+ ],
14
+ "final_checkpoint": {
15
+ "steps": 10000092,
16
+ "file_path": "results\\pyramids_final_best\\Pyramids.onnx",
17
+ "reward": 1.8061499949544668,
18
+ "creation_time": 1767788027.3648493,
19
+ "auxillary_file_paths": [
20
+ "results\\pyramids_final_best\\Pyramids\\Pyramids-10000092.pt"
21
+ ]
22
+ }
23
+ },
24
+ "metadata": {
25
+ "stats_format_version": "0.3.0",
26
+ "mlagents_version": "1.2.0.dev0",
27
+ "torch_version": "2.8.0+cpu"
28
+ }
29
+ }