First Push
Browse files- .ipynb_checkpoints/config-checkpoint.json +1 -0
- .ipynb_checkpoints/configuration-checkpoint.yaml +79 -0
- SnowballTarget.onnx +3 -0
- SnowballTarget/SnowballTarget-153592.onnx +3 -0
- SnowballTarget/SnowballTarget-153592.pt +3 -0
- SnowballTarget/checkpoint.pt +1 -1
- SnowballTarget/events.out.tfevents.1714275521.bigteddy.11771.0 +3 -0
- config.json +1 -1
- configuration.yaml +61 -9
- run_logs/Player-0.log +70 -63
- run_logs/timers.json +257 -0
- run_logs/training_status.json +38 -0
.ipynb_checkpoints/config-checkpoint.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"behaviors": {"SnowballTarget": {"trainer_type": "ppo", "summary_freq": 10000, "keep_checkpoints": 10, "checkpoint_interval": 50000, "max_steps": 200000, "time_horizon": 64, "threaded": true, "hyperparameters": {"learning_rate": 0.0003, "learning_rate_schedule": "linear", "batch_size": 128, "buffer_size": 2048, "beta": 0.005, "epsilon": 0.2, "lambd": 0.95, "num_epoch": 3}, "network_settings": {"normalize": false, "hidden_units": 256, "num_layers": 2, "vis_encode_type": "simple"}, "reward_signals": {"extrinsic": {"gamma": 0.99, "strength": 1.0}}}}}
|
.ipynb_checkpoints/configuration-checkpoint.yaml
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
default_settings: null
|
2 |
+
behaviors:
|
3 |
+
SnowballTarget:
|
4 |
+
trainer_type: ppo
|
5 |
+
hyperparameters:
|
6 |
+
batch_size: 128
|
7 |
+
buffer_size: 2048
|
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: 50000
|
18 |
+
network_settings:
|
19 |
+
normalize: false
|
20 |
+
hidden_units: 256
|
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 |
+
init_path: null
|
39 |
+
keep_checkpoints: 10
|
40 |
+
even_checkpoints: false
|
41 |
+
max_steps: 200000
|
42 |
+
time_horizon: 64
|
43 |
+
summary_freq: 10000
|
44 |
+
threaded: true
|
45 |
+
self_play: null
|
46 |
+
behavioral_cloning: null
|
47 |
+
env_settings:
|
48 |
+
env_path: ./training-envs-executables/linux/SnowballTarget/SnowballTarget
|
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: false
|
66 |
+
no_graphics_monitor: false
|
67 |
+
environment_parameters: null
|
68 |
+
checkpoint_settings:
|
69 |
+
run_id: SnowballTarget1
|
70 |
+
initialize_from: null
|
71 |
+
load_model: false
|
72 |
+
resume: true
|
73 |
+
force: false
|
74 |
+
train_model: false
|
75 |
+
inference: false
|
76 |
+
results_dir: results
|
77 |
+
torch_settings:
|
78 |
+
device: null
|
79 |
+
debug: false
|
SnowballTarget.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:edde0e63d888a0910eebafed7e583f3560f97620b6a25bc41b7201065dd6ad05
|
3 |
+
size 650646
|
SnowballTarget/SnowballTarget-153592.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:edde0e63d888a0910eebafed7e583f3560f97620b6a25bc41b7201065dd6ad05
|
3 |
+
size 650646
|
SnowballTarget/SnowballTarget-153592.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2a732f32fff645426bdf6d16f558f25a1f1283506f4f2c8ee3ad786d9b21808d
|
3 |
+
size 3849115
|
SnowballTarget/checkpoint.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 3848290
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:abc9d54af7b191b414896e1b2c97a91964ed12f0a8ad021c4de0900158fcdfe0
|
3 |
size 3848290
|
SnowballTarget/events.out.tfevents.1714275521.bigteddy.11771.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3103effd7932d145bc46a6eb59ea2502c07a8f74e9ac43e9db44b2e1a8465f98
|
3 |
+
size 1168
|
config.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"behaviors": {"SnowballTarget": {"trainer_type": "ppo", "
|
|
|
1 |
+
{"default_settings": null, "behaviors": {"SnowballTarget": {"trainer_type": "ppo", "hyperparameters": {"batch_size": 128, "buffer_size": 2048, "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": 50000, "network_settings": {"normalize": false, "hidden_units": 256, "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": 10, "even_checkpoints": false, "max_steps": 200000, "time_horizon": 64, "summary_freq": 10000, "threaded": true, "self_play": null, "behavioral_cloning": null}}, "env_settings": {"env_path": "./training-envs-executables/linux/SnowballTarget/SnowballTarget", "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": false, "no_graphics_monitor": false}, "environment_parameters": null, "checkpoint_settings": {"run_id": "SnowballTarget1", "initialize_from": null, "load_model": false, "resume": true, "force": false, "train_model": false, "inference": false, "results_dir": "results"}, "torch_settings": {"device": null}, "debug": false}
|
configuration.yaml
CHANGED
@@ -1,27 +1,79 @@
|
|
|
|
1 |
behaviors:
|
2 |
SnowballTarget:
|
3 |
trainer_type: ppo
|
4 |
-
summary_freq: 10000
|
5 |
-
keep_checkpoints: 10
|
6 |
-
checkpoint_interval: 50000
|
7 |
-
max_steps: 200000
|
8 |
-
time_horizon: 64
|
9 |
-
threaded: true
|
10 |
hyperparameters:
|
11 |
-
learning_rate: 0.0003
|
12 |
-
learning_rate_schedule: linear
|
13 |
batch_size: 128
|
14 |
buffer_size: 2048
|
|
|
15 |
beta: 0.005
|
16 |
epsilon: 0.2
|
17 |
lambd: 0.95
|
18 |
num_epoch: 3
|
|
|
|
|
|
|
|
|
|
|
19 |
network_settings:
|
20 |
normalize: false
|
21 |
hidden_units: 256
|
22 |
num_layers: 2
|
23 |
vis_encode_type: simple
|
|
|
|
|
|
|
24 |
reward_signals:
|
25 |
extrinsic:
|
26 |
gamma: 0.99
|
27 |
-
strength: 1.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
default_settings: null
|
2 |
behaviors:
|
3 |
SnowballTarget:
|
4 |
trainer_type: ppo
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
hyperparameters:
|
|
|
|
|
6 |
batch_size: 128
|
7 |
buffer_size: 2048
|
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: 50000
|
18 |
network_settings:
|
19 |
normalize: false
|
20 |
hidden_units: 256
|
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 |
+
init_path: null
|
39 |
+
keep_checkpoints: 10
|
40 |
+
even_checkpoints: false
|
41 |
+
max_steps: 200000
|
42 |
+
time_horizon: 64
|
43 |
+
summary_freq: 10000
|
44 |
+
threaded: true
|
45 |
+
self_play: null
|
46 |
+
behavioral_cloning: null
|
47 |
+
env_settings:
|
48 |
+
env_path: ./training-envs-executables/linux/SnowballTarget/SnowballTarget
|
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: false
|
66 |
+
no_graphics_monitor: false
|
67 |
+
environment_parameters: null
|
68 |
+
checkpoint_settings:
|
69 |
+
run_id: SnowballTarget1
|
70 |
+
initialize_from: null
|
71 |
+
load_model: false
|
72 |
+
resume: true
|
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
CHANGED
@@ -2,35 +2,37 @@ Mono path[0] = '/home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/
|
|
2 |
Mono config path = '/home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/MonoBleedingEdge/etc'
|
3 |
Preloaded 'lib_burst_generated.so'
|
4 |
Preloaded 'libgrpc_csharp_ext.x64.so'
|
|
|
|
|
5 |
Initialize engine version: 2021.3.14f1 (eee1884e7226)
|
6 |
[Subsystems] Discovering subsystems at path /home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/UnitySubsystems
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
13 |
Begin MonoManager ReloadAssembly
|
14 |
-
- Completed reload, in 0.
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
|
21 |
-
ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
|
22 |
-
WARNING: Shader Unsupported: 'Standard' - All subshaders removed
|
23 |
-
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
|
24 |
-
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
|
25 |
-
UnloadTime: 0.776359 ms
|
26 |
-
ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
|
27 |
requesting resize 84 x 84
|
|
|
|
|
28 |
Setting up 10 worker threads for Enlighten.
|
29 |
Memory Statistics:
|
30 |
[ALLOC_TEMP_TLS] TLS Allocator
|
31 |
StackAllocators :
|
32 |
[ALLOC_TEMP_MAIN]
|
33 |
-
Peak usage frame count: [8.0 KB-16.0 KB]:
|
34 |
Initial Block Size 4.0 MB
|
35 |
Current Block Size 4.0 MB
|
36 |
Peak Allocated Bytes 2.0 MB
|
@@ -38,7 +40,7 @@ Memory Statistics:
|
|
38 |
[ALLOC_TEMP_Job.Worker 18]
|
39 |
Initial Block Size 256.0 KB
|
40 |
Current Block Size 256.0 KB
|
41 |
-
Peak Allocated Bytes
|
42 |
Overflow Count 0
|
43 |
[ALLOC_TEMP_Loading.PreloadManager]
|
44 |
Initial Block Size 256.0 KB
|
@@ -58,12 +60,12 @@ Memory Statistics:
|
|
58 |
[ALLOC_TEMP_Job.Worker 6]
|
59 |
Initial Block Size 256.0 KB
|
60 |
Current Block Size 256.0 KB
|
61 |
-
Peak Allocated Bytes
|
62 |
Overflow Count 0
|
63 |
[ALLOC_TEMP_Job.Worker 0]
|
64 |
Initial Block Size 256.0 KB
|
65 |
Current Block Size 256.0 KB
|
66 |
-
Peak Allocated Bytes
|
67 |
Overflow Count 0
|
68 |
[ALLOC_TEMP_Background Job.Worker 10]
|
69 |
Initial Block Size 32.0 KB
|
@@ -78,7 +80,7 @@ Memory Statistics:
|
|
78 |
[ALLOC_TEMP_Job.Worker 5]
|
79 |
Initial Block Size 256.0 KB
|
80 |
Current Block Size 256.0 KB
|
81 |
-
Peak Allocated Bytes
|
82 |
Overflow Count 0
|
83 |
[ALLOC_TEMP_Background Job.Worker 14]
|
84 |
Initial Block Size 32.0 KB
|
@@ -88,7 +90,7 @@ Memory Statistics:
|
|
88 |
[ALLOC_TEMP_Job.Worker 16]
|
89 |
Initial Block Size 256.0 KB
|
90 |
Current Block Size 256.0 KB
|
91 |
-
Peak Allocated Bytes
|
92 |
Overflow Count 0
|
93 |
[ALLOC_TEMP_Background Job.Worker 6]
|
94 |
Initial Block Size 32.0 KB
|
@@ -98,27 +100,27 @@ Memory Statistics:
|
|
98 |
[ALLOC_TEMP_Job.Worker 4]
|
99 |
Initial Block Size 256.0 KB
|
100 |
Current Block Size 256.0 KB
|
101 |
-
Peak Allocated Bytes
|
102 |
Overflow Count 0
|
103 |
-
[ALLOC_TEMP_Job.Worker
|
104 |
Initial Block Size 256.0 KB
|
105 |
Current Block Size 256.0 KB
|
106 |
-
Peak Allocated Bytes 3
|
107 |
Overflow Count 0
|
108 |
-
[ALLOC_TEMP_Job.Worker
|
109 |
Initial Block Size 256.0 KB
|
110 |
Current Block Size 256.0 KB
|
111 |
-
Peak Allocated Bytes
|
112 |
Overflow Count 0
|
113 |
[ALLOC_TEMP_Job.Worker 3]
|
114 |
Initial Block Size 256.0 KB
|
115 |
Current Block Size 256.0 KB
|
116 |
-
Peak Allocated Bytes
|
117 |
Overflow Count 0
|
118 |
[ALLOC_TEMP_Job.Worker 13]
|
119 |
Initial Block Size 256.0 KB
|
120 |
Current Block Size 256.0 KB
|
121 |
-
Peak Allocated Bytes
|
122 |
Overflow Count 0
|
123 |
[ALLOC_TEMP_Background Job.Worker 12]
|
124 |
Initial Block Size 32.0 KB
|
@@ -150,6 +152,11 @@ Memory Statistics:
|
|
150 |
Current Block Size 32.0 KB
|
151 |
Peak Allocated Bytes 0 B
|
152 |
Overflow Count 0
|
|
|
|
|
|
|
|
|
|
|
153 |
[ALLOC_TEMP_AssetGarbageCollectorHelper] x 19
|
154 |
Initial Block Size 64.0 KB
|
155 |
Current Block Size 64.0 KB
|
@@ -163,7 +170,7 @@ Memory Statistics:
|
|
163 |
[ALLOC_TEMP_Job.Worker 9]
|
164 |
Initial Block Size 256.0 KB
|
165 |
Current Block Size 256.0 KB
|
166 |
-
Peak Allocated Bytes
|
167 |
Overflow Count 0
|
168 |
[ALLOC_TEMP_Background Job.Worker 13]
|
169 |
Initial Block Size 32.0 KB
|
@@ -173,22 +180,22 @@ Memory Statistics:
|
|
173 |
[ALLOC_TEMP_Job.Worker 8]
|
174 |
Initial Block Size 256.0 KB
|
175 |
Current Block Size 256.0 KB
|
176 |
-
Peak Allocated Bytes
|
177 |
Overflow Count 0
|
178 |
[ALLOC_TEMP_Job.Worker 7]
|
179 |
Initial Block Size 256.0 KB
|
180 |
Current Block Size 256.0 KB
|
181 |
-
Peak Allocated Bytes
|
182 |
Overflow Count 0
|
183 |
[ALLOC_TEMP_Job.Worker 1]
|
184 |
Initial Block Size 256.0 KB
|
185 |
Current Block Size 256.0 KB
|
186 |
-
Peak Allocated Bytes
|
187 |
Overflow Count 0
|
188 |
[ALLOC_TEMP_Job.Worker 2]
|
189 |
Initial Block Size 256.0 KB
|
190 |
Current Block Size 256.0 KB
|
191 |
-
Peak Allocated Bytes
|
192 |
Overflow Count 0
|
193 |
[ALLOC_TEMP_Background Job.Worker 3]
|
194 |
Initial Block Size 32.0 KB
|
@@ -203,7 +210,7 @@ Memory Statistics:
|
|
203 |
[ALLOC_TEMP_Job.Worker 10]
|
204 |
Initial Block Size 256.0 KB
|
205 |
Current Block Size 256.0 KB
|
206 |
-
Peak Allocated Bytes
|
207 |
Overflow Count 0
|
208 |
[ALLOC_TEMP_Background Job.Worker 0]
|
209 |
Initial Block Size 32.0 KB
|
@@ -213,17 +220,17 @@ Memory Statistics:
|
|
213 |
[ALLOC_TEMP_Job.Worker 15]
|
214 |
Initial Block Size 256.0 KB
|
215 |
Current Block Size 256.0 KB
|
216 |
-
Peak Allocated Bytes
|
217 |
Overflow Count 0
|
218 |
[ALLOC_TEMP_Job.Worker 11]
|
219 |
Initial Block Size 256.0 KB
|
220 |
Current Block Size 256.0 KB
|
221 |
-
Peak Allocated Bytes
|
222 |
Overflow Count 0
|
223 |
[ALLOC_TEMP_Job.Worker 12]
|
224 |
Initial Block Size 256.0 KB
|
225 |
Current Block Size 256.0 KB
|
226 |
-
Peak Allocated Bytes
|
227 |
Overflow Count 0
|
228 |
[ALLOC_TEMP_Background Job.Worker 4]
|
229 |
Initial Block Size 32.0 KB
|
@@ -236,22 +243,22 @@ Memory Statistics:
|
|
236 |
Peak Allocated Bytes 0 B
|
237 |
Overflow Count 0
|
238 |
[ALLOC_DEFAULT] Dual Thread Allocator
|
239 |
-
Peak main deferred allocation count
|
240 |
[ALLOC_BUCKET]
|
241 |
Large Block size 4.0 MB
|
242 |
Used Block count 1
|
243 |
-
Peak Allocated bytes
|
244 |
[ALLOC_DEFAULT_MAIN]
|
245 |
-
Peak usage frame count: [
|
246 |
Requested Block Size 16.0 MB
|
247 |
Peak Block count 1
|
248 |
-
Peak Allocated memory
|
249 |
Peak Large allocation bytes 0 B
|
250 |
[ALLOC_DEFAULT_THREAD]
|
251 |
-
Peak usage frame count: [16.0 MB-32.0 MB]:
|
252 |
Requested Block Size 16.0 MB
|
253 |
Peak Block count 1
|
254 |
-
Peak Allocated memory
|
255 |
Peak Large allocation bytes 16.0 MB
|
256 |
[ALLOC_TEMP_JOB_1_FRAME]
|
257 |
Initial Block Size 2.0 MB
|
@@ -274,55 +281,55 @@ Memory Statistics:
|
|
274 |
Overflow Count (too large) 0
|
275 |
Overflow Count (full) 0
|
276 |
[ALLOC_GFX] Dual Thread Allocator
|
277 |
-
Peak main deferred allocation count
|
278 |
[ALLOC_BUCKET]
|
279 |
Large Block size 4.0 MB
|
280 |
Used Block count 1
|
281 |
-
Peak Allocated bytes
|
282 |
[ALLOC_GFX_MAIN]
|
283 |
-
Peak usage frame count: [32.0 KB-64.0 KB]:
|
284 |
Requested Block Size 16.0 MB
|
285 |
Peak Block count 1
|
286 |
-
Peak Allocated memory
|
287 |
Peak Large allocation bytes 0 B
|
288 |
[ALLOC_GFX_THREAD]
|
289 |
-
Peak usage frame count: [
|
290 |
Requested Block Size 16.0 MB
|
291 |
Peak Block count 1
|
292 |
-
Peak Allocated memory
|
293 |
Peak Large allocation bytes 0 B
|
294 |
[ALLOC_CACHEOBJECTS] Dual Thread Allocator
|
295 |
-
Peak main deferred allocation count
|
296 |
[ALLOC_BUCKET]
|
297 |
Large Block size 4.0 MB
|
298 |
Used Block count 1
|
299 |
-
Peak Allocated bytes
|
300 |
[ALLOC_CACHEOBJECTS_MAIN]
|
301 |
-
Peak usage frame count: [0
|
302 |
Requested Block Size 4.0 MB
|
303 |
Peak Block count 1
|
304 |
-
Peak Allocated memory
|
305 |
Peak Large allocation bytes 0 B
|
306 |
[ALLOC_CACHEOBJECTS_THREAD]
|
307 |
-
Peak usage frame count: [0
|
308 |
Requested Block Size 4.0 MB
|
309 |
-
Peak Block count
|
310 |
-
Peak Allocated memory
|
311 |
Peak Large allocation bytes 0 B
|
312 |
[ALLOC_TYPETREE] Dual Thread Allocator
|
313 |
Peak main deferred allocation count 0
|
314 |
[ALLOC_BUCKET]
|
315 |
Large Block size 4.0 MB
|
316 |
Used Block count 1
|
317 |
-
Peak Allocated bytes
|
318 |
[ALLOC_TYPETREE_MAIN]
|
319 |
-
Peak usage frame count: [0-1.0 KB]:
|
320 |
Requested Block Size 2.0 MB
|
321 |
Peak Block count 1
|
322 |
Peak Allocated memory 1.0 KB
|
323 |
Peak Large allocation bytes 0 B
|
324 |
[ALLOC_TYPETREE_THREAD]
|
325 |
-
Peak usage frame count: [1.0 KB-2.0 KB]:
|
326 |
Requested Block Size 2.0 MB
|
327 |
Peak Block count 1
|
328 |
Peak Allocated memory 1.7 KB
|
|
|
2 |
Mono config path = '/home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/MonoBleedingEdge/etc'
|
3 |
Preloaded 'lib_burst_generated.so'
|
4 |
Preloaded 'libgrpc_csharp_ext.x64.so'
|
5 |
+
Display 0 'XWAYLAND0': 1920x1080 (primary device).
|
6 |
+
Desktop is 1920 x 1080 @ 60 Hz
|
7 |
Initialize engine version: 2021.3.14f1 (eee1884e7226)
|
8 |
[Subsystems] Discovering subsystems at path /home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/UnitySubsystems
|
9 |
+
GfxDevice: creating device client; threaded=1; jobified=1
|
10 |
+
Renderer: llvmpipe (LLVM 10.0.0, 256 bits)
|
11 |
+
Vendor: VMware, Inc.
|
12 |
+
Version: 3.3 (Core Profile) Mesa 20.0.8
|
13 |
+
GLES: 0
|
14 |
+
GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_gpu_shader_int64 GL_AMD_multi_draw_indirect GL_AMD_query_buffer_object GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_stencil_export GL_AMD_shader_trinary_minmax GL_AMD_texture_texture4 GL_AMD_vertex_shader_layer GL_AMD_vertex_shader_viewport_index GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_enh
|
15 |
+
anced_layouts GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader_int64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_occlusion_query2 GL_ARB_parallel_shader_compile GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_query_buffer_object GL_ARB_robustness GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shade
|
16 |
+
r_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_bit_encoding GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_stencil_export GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_lod GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map_array GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_textu
|
17 |
+
re_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_shader GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ATI_blend_equation_separate GL_ATI_texture_float GL_ATI_texture_mirror_once GL_EXT_EGL_image_storage GL_EXT_EGL_sync GL_EXT_abgr GL_EXT_blend_equation_separate GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_shader_integer_mix GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_r
|
18 |
+
gtc GL_EXT_texture_compression_s3tc GL_EXT_texture_integer GL_EXT_texture_mirror_clamp GL_EXT_texture_sRGB GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_decode GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_IBM_multimode_draw_arrays GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_parallel_shader_compile GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_sliced_3d GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_MESA_ycbcr_texture GL_NV_conditional_render GL_NV_depth_clamp GL_NV_packed_depth_stencil GL_OES_EGL_image GL_S3_s3tc
|
19 |
+
OPENGL LOG: Creating OpenGL 3.3 graphics device ; Context level <OpenGL 3.3> ; Context handle 29618128
|
20 |
Begin MonoManager ReloadAssembly
|
21 |
+
- Completed reload, in 0.071 seconds
|
22 |
+
Default vsync count 1
|
23 |
+
requesting resize 1132 x 759
|
24 |
+
resizing window to 1132 x 759
|
25 |
+
Desktop is 1920 x 1080 @ 60 Hz
|
26 |
+
UnloadTime: 1.323963 ms
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
requesting resize 84 x 84
|
28 |
+
resizing window to 84 x 84
|
29 |
+
Desktop is 1920 x 1080 @ 60 Hz
|
30 |
Setting up 10 worker threads for Enlighten.
|
31 |
Memory Statistics:
|
32 |
[ALLOC_TEMP_TLS] TLS Allocator
|
33 |
StackAllocators :
|
34 |
[ALLOC_TEMP_MAIN]
|
35 |
+
Peak usage frame count: [8.0 KB-16.0 KB]: 111 frames, [16.0 KB-32.0 KB]: 1 frames, [2.0 MB-4.0 MB]: 1 frames
|
36 |
Initial Block Size 4.0 MB
|
37 |
Current Block Size 4.0 MB
|
38 |
Peak Allocated Bytes 2.0 MB
|
|
|
40 |
[ALLOC_TEMP_Job.Worker 18]
|
41 |
Initial Block Size 256.0 KB
|
42 |
Current Block Size 256.0 KB
|
43 |
+
Peak Allocated Bytes 6.8 KB
|
44 |
Overflow Count 0
|
45 |
[ALLOC_TEMP_Loading.PreloadManager]
|
46 |
Initial Block Size 256.0 KB
|
|
|
60 |
[ALLOC_TEMP_Job.Worker 6]
|
61 |
Initial Block Size 256.0 KB
|
62 |
Current Block Size 256.0 KB
|
63 |
+
Peak Allocated Bytes 6.7 KB
|
64 |
Overflow Count 0
|
65 |
[ALLOC_TEMP_Job.Worker 0]
|
66 |
Initial Block Size 256.0 KB
|
67 |
Current Block Size 256.0 KB
|
68 |
+
Peak Allocated Bytes 6.9 KB
|
69 |
Overflow Count 0
|
70 |
[ALLOC_TEMP_Background Job.Worker 10]
|
71 |
Initial Block Size 32.0 KB
|
|
|
80 |
[ALLOC_TEMP_Job.Worker 5]
|
81 |
Initial Block Size 256.0 KB
|
82 |
Current Block Size 256.0 KB
|
83 |
+
Peak Allocated Bytes 6.8 KB
|
84 |
Overflow Count 0
|
85 |
[ALLOC_TEMP_Background Job.Worker 14]
|
86 |
Initial Block Size 32.0 KB
|
|
|
90 |
[ALLOC_TEMP_Job.Worker 16]
|
91 |
Initial Block Size 256.0 KB
|
92 |
Current Block Size 256.0 KB
|
93 |
+
Peak Allocated Bytes 6.9 KB
|
94 |
Overflow Count 0
|
95 |
[ALLOC_TEMP_Background Job.Worker 6]
|
96 |
Initial Block Size 32.0 KB
|
|
|
100 |
[ALLOC_TEMP_Job.Worker 4]
|
101 |
Initial Block Size 256.0 KB
|
102 |
Current Block Size 256.0 KB
|
103 |
+
Peak Allocated Bytes 6.9 KB
|
104 |
Overflow Count 0
|
105 |
+
[ALLOC_TEMP_Job.Worker 14]
|
106 |
Initial Block Size 256.0 KB
|
107 |
Current Block Size 256.0 KB
|
108 |
+
Peak Allocated Bytes 20.3 KB
|
109 |
Overflow Count 0
|
110 |
+
[ALLOC_TEMP_Job.Worker 17]
|
111 |
Initial Block Size 256.0 KB
|
112 |
Current Block Size 256.0 KB
|
113 |
+
Peak Allocated Bytes 6.8 KB
|
114 |
Overflow Count 0
|
115 |
[ALLOC_TEMP_Job.Worker 3]
|
116 |
Initial Block Size 256.0 KB
|
117 |
Current Block Size 256.0 KB
|
118 |
+
Peak Allocated Bytes 6.8 KB
|
119 |
Overflow Count 0
|
120 |
[ALLOC_TEMP_Job.Worker 13]
|
121 |
Initial Block Size 256.0 KB
|
122 |
Current Block Size 256.0 KB
|
123 |
+
Peak Allocated Bytes 6.7 KB
|
124 |
Overflow Count 0
|
125 |
[ALLOC_TEMP_Background Job.Worker 12]
|
126 |
Initial Block Size 32.0 KB
|
|
|
152 |
Current Block Size 32.0 KB
|
153 |
Peak Allocated Bytes 0 B
|
154 |
Overflow Count 0
|
155 |
+
[ALLOC_TEMP_UnityGfxDeviceWorker]
|
156 |
+
Initial Block Size 256.0 KB
|
157 |
+
Current Block Size 256.0 KB
|
158 |
+
Peak Allocated Bytes 45.6 KB
|
159 |
+
Overflow Count 0
|
160 |
[ALLOC_TEMP_AssetGarbageCollectorHelper] x 19
|
161 |
Initial Block Size 64.0 KB
|
162 |
Current Block Size 64.0 KB
|
|
|
170 |
[ALLOC_TEMP_Job.Worker 9]
|
171 |
Initial Block Size 256.0 KB
|
172 |
Current Block Size 256.0 KB
|
173 |
+
Peak Allocated Bytes 6.7 KB
|
174 |
Overflow Count 0
|
175 |
[ALLOC_TEMP_Background Job.Worker 13]
|
176 |
Initial Block Size 32.0 KB
|
|
|
180 |
[ALLOC_TEMP_Job.Worker 8]
|
181 |
Initial Block Size 256.0 KB
|
182 |
Current Block Size 256.0 KB
|
183 |
+
Peak Allocated Bytes 6.7 KB
|
184 |
Overflow Count 0
|
185 |
[ALLOC_TEMP_Job.Worker 7]
|
186 |
Initial Block Size 256.0 KB
|
187 |
Current Block Size 256.0 KB
|
188 |
+
Peak Allocated Bytes 6.0 KB
|
189 |
Overflow Count 0
|
190 |
[ALLOC_TEMP_Job.Worker 1]
|
191 |
Initial Block Size 256.0 KB
|
192 |
Current Block Size 256.0 KB
|
193 |
+
Peak Allocated Bytes 6.8 KB
|
194 |
Overflow Count 0
|
195 |
[ALLOC_TEMP_Job.Worker 2]
|
196 |
Initial Block Size 256.0 KB
|
197 |
Current Block Size 256.0 KB
|
198 |
+
Peak Allocated Bytes 6.8 KB
|
199 |
Overflow Count 0
|
200 |
[ALLOC_TEMP_Background Job.Worker 3]
|
201 |
Initial Block Size 32.0 KB
|
|
|
210 |
[ALLOC_TEMP_Job.Worker 10]
|
211 |
Initial Block Size 256.0 KB
|
212 |
Current Block Size 256.0 KB
|
213 |
+
Peak Allocated Bytes 6.7 KB
|
214 |
Overflow Count 0
|
215 |
[ALLOC_TEMP_Background Job.Worker 0]
|
216 |
Initial Block Size 32.0 KB
|
|
|
220 |
[ALLOC_TEMP_Job.Worker 15]
|
221 |
Initial Block Size 256.0 KB
|
222 |
Current Block Size 256.0 KB
|
223 |
+
Peak Allocated Bytes 6.7 KB
|
224 |
Overflow Count 0
|
225 |
[ALLOC_TEMP_Job.Worker 11]
|
226 |
Initial Block Size 256.0 KB
|
227 |
Current Block Size 256.0 KB
|
228 |
+
Peak Allocated Bytes 6.8 KB
|
229 |
Overflow Count 0
|
230 |
[ALLOC_TEMP_Job.Worker 12]
|
231 |
Initial Block Size 256.0 KB
|
232 |
Current Block Size 256.0 KB
|
233 |
+
Peak Allocated Bytes 6.8 KB
|
234 |
Overflow Count 0
|
235 |
[ALLOC_TEMP_Background Job.Worker 4]
|
236 |
Initial Block Size 32.0 KB
|
|
|
243 |
Peak Allocated Bytes 0 B
|
244 |
Overflow Count 0
|
245 |
[ALLOC_DEFAULT] Dual Thread Allocator
|
246 |
+
Peak main deferred allocation count 26
|
247 |
[ALLOC_BUCKET]
|
248 |
Large Block size 4.0 MB
|
249 |
Used Block count 1
|
250 |
+
Peak Allocated bytes 2.3 MB
|
251 |
[ALLOC_DEFAULT_MAIN]
|
252 |
+
Peak usage frame count: [8.0 MB-16.0 MB]: 113 frames
|
253 |
Requested Block Size 16.0 MB
|
254 |
Peak Block count 1
|
255 |
+
Peak Allocated memory 13.7 MB
|
256 |
Peak Large allocation bytes 0 B
|
257 |
[ALLOC_DEFAULT_THREAD]
|
258 |
+
Peak usage frame count: [16.0 MB-32.0 MB]: 113 frames
|
259 |
Requested Block Size 16.0 MB
|
260 |
Peak Block count 1
|
261 |
+
Peak Allocated memory 20.4 MB
|
262 |
Peak Large allocation bytes 16.0 MB
|
263 |
[ALLOC_TEMP_JOB_1_FRAME]
|
264 |
Initial Block Size 2.0 MB
|
|
|
281 |
Overflow Count (too large) 0
|
282 |
Overflow Count (full) 0
|
283 |
[ALLOC_GFX] Dual Thread Allocator
|
284 |
+
Peak main deferred allocation count 1
|
285 |
[ALLOC_BUCKET]
|
286 |
Large Block size 4.0 MB
|
287 |
Used Block count 1
|
288 |
+
Peak Allocated bytes 2.3 MB
|
289 |
[ALLOC_GFX_MAIN]
|
290 |
+
Peak usage frame count: [32.0 KB-64.0 KB]: 13 frames, [64.0 KB-128.0 KB]: 99 frames, [2.0 MB-4.0 MB]: 1 frames
|
291 |
Requested Block Size 16.0 MB
|
292 |
Peak Block count 1
|
293 |
+
Peak Allocated memory 2.7 MB
|
294 |
Peak Large allocation bytes 0 B
|
295 |
[ALLOC_GFX_THREAD]
|
296 |
+
Peak usage frame count: [1.0 MB-2.0 MB]: 113 frames
|
297 |
Requested Block Size 16.0 MB
|
298 |
Peak Block count 1
|
299 |
+
Peak Allocated memory 1.4 MB
|
300 |
Peak Large allocation bytes 0 B
|
301 |
[ALLOC_CACHEOBJECTS] Dual Thread Allocator
|
302 |
+
Peak main deferred allocation count 4
|
303 |
[ALLOC_BUCKET]
|
304 |
Large Block size 4.0 MB
|
305 |
Used Block count 1
|
306 |
+
Peak Allocated bytes 2.3 MB
|
307 |
[ALLOC_CACHEOBJECTS_MAIN]
|
308 |
+
Peak usage frame count: [1.0 MB-2.0 MB]: 113 frames
|
309 |
Requested Block Size 4.0 MB
|
310 |
Peak Block count 1
|
311 |
+
Peak Allocated memory 1.2 MB
|
312 |
Peak Large allocation bytes 0 B
|
313 |
[ALLOC_CACHEOBJECTS_THREAD]
|
314 |
+
Peak usage frame count: [2.0 MB-4.0 MB]: 112 frames, [4.0 MB-8.0 MB]: 1 frames
|
315 |
Requested Block Size 4.0 MB
|
316 |
+
Peak Block count 2
|
317 |
+
Peak Allocated memory 5.2 MB
|
318 |
Peak Large allocation bytes 0 B
|
319 |
[ALLOC_TYPETREE] Dual Thread Allocator
|
320 |
Peak main deferred allocation count 0
|
321 |
[ALLOC_BUCKET]
|
322 |
Large Block size 4.0 MB
|
323 |
Used Block count 1
|
324 |
+
Peak Allocated bytes 2.3 MB
|
325 |
[ALLOC_TYPETREE_MAIN]
|
326 |
+
Peak usage frame count: [0-1.0 KB]: 113 frames
|
327 |
Requested Block Size 2.0 MB
|
328 |
Peak Block count 1
|
329 |
Peak Allocated memory 1.0 KB
|
330 |
Peak Large allocation bytes 0 B
|
331 |
[ALLOC_TYPETREE_THREAD]
|
332 |
+
Peak usage frame count: [1.0 KB-2.0 KB]: 113 frames
|
333 |
Requested Block Size 2.0 MB
|
334 |
Peak Block count 1
|
335 |
Peak Allocated memory 1.7 KB
|
run_logs/timers.json
ADDED
@@ -0,0 +1,257 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "root",
|
3 |
+
"gauges": {
|
4 |
+
"SnowballTarget.Policy.Entropy.mean": {
|
5 |
+
"value": 1.0462374687194824,
|
6 |
+
"min": 1.0462374687194824,
|
7 |
+
"max": 1.0462374687194824,
|
8 |
+
"count": 1
|
9 |
+
},
|
10 |
+
"SnowballTarget.Policy.Entropy.sum": {
|
11 |
+
"value": 736.5512084960938,
|
12 |
+
"min": 736.5512084960938,
|
13 |
+
"max": 736.5512084960938,
|
14 |
+
"count": 1
|
15 |
+
},
|
16 |
+
"SnowballTarget.IsTraining.mean": {
|
17 |
+
"value": 1.0,
|
18 |
+
"min": 1.0,
|
19 |
+
"max": 1.0,
|
20 |
+
"count": 1
|
21 |
+
},
|
22 |
+
"SnowballTarget.IsTraining.sum": {
|
23 |
+
"value": 1.0,
|
24 |
+
"min": 1.0,
|
25 |
+
"max": 1.0,
|
26 |
+
"count": 1
|
27 |
+
}
|
28 |
+
},
|
29 |
+
"metadata": {
|
30 |
+
"timer_format_version": "0.1.0",
|
31 |
+
"start_time_seconds": "1714275518",
|
32 |
+
"python_version": "3.10.12 | packaged by conda-forge | (main, Jun 23 2023, 22:40:32) [GCC 12.3.0]",
|
33 |
+
"command_line_arguments": "/home/saini5/miniforge3/envs/hf_rl_mlagents_env/bin/mlagents-learn ml-agents/config/ppo/SnowballTarget.yaml --env=./training-envs-executables/linux/SnowballTarget/SnowballTarget --run-id=SnowballTarget1 --resume",
|
34 |
+
"mlagents_version": "1.1.0.dev0",
|
35 |
+
"mlagents_envs_version": "1.1.0.dev0",
|
36 |
+
"communication_protocol_version": "1.5.0",
|
37 |
+
"pytorch_version": "2.3.0+cu121",
|
38 |
+
"numpy_version": "1.23.5",
|
39 |
+
"end_time_seconds": "1714275544"
|
40 |
+
},
|
41 |
+
"total": 26.17338200999984,
|
42 |
+
"count": 1,
|
43 |
+
"self": 0.38508118800200464,
|
44 |
+
"children": {
|
45 |
+
"run_training.setup": {
|
46 |
+
"total": 0.01716165199832176,
|
47 |
+
"count": 1,
|
48 |
+
"self": 0.01716165199832176
|
49 |
+
},
|
50 |
+
"TrainerController.start_learning": {
|
51 |
+
"total": 25.771139169999515,
|
52 |
+
"count": 1,
|
53 |
+
"self": 0.016624285986836185,
|
54 |
+
"children": {
|
55 |
+
"TrainerController._reset_env": {
|
56 |
+
"total": 3.857721684000353,
|
57 |
+
"count": 1,
|
58 |
+
"self": 3.857721684000353
|
59 |
+
},
|
60 |
+
"TrainerController.advance": {
|
61 |
+
"total": 21.699781874012842,
|
62 |
+
"count": 377,
|
63 |
+
"self": 0.008831840006678249,
|
64 |
+
"children": {
|
65 |
+
"env_step": {
|
66 |
+
"total": 21.690950034006164,
|
67 |
+
"count": 377,
|
68 |
+
"self": 16.31516701403598,
|
69 |
+
"children": {
|
70 |
+
"SubprocessEnvManager._take_step": {
|
71 |
+
"total": 5.368023775992697,
|
72 |
+
"count": 377,
|
73 |
+
"self": 0.05307514300329785,
|
74 |
+
"children": {
|
75 |
+
"TorchPolicy.evaluate": {
|
76 |
+
"total": 5.314948632989399,
|
77 |
+
"count": 377,
|
78 |
+
"self": 5.314948632989399
|
79 |
+
}
|
80 |
+
}
|
81 |
+
},
|
82 |
+
"workers": {
|
83 |
+
"total": 0.00775924397748895,
|
84 |
+
"count": 376,
|
85 |
+
"self": 0.0,
|
86 |
+
"children": {
|
87 |
+
"worker_root": {
|
88 |
+
"total": 25.548096439015353,
|
89 |
+
"count": 376,
|
90 |
+
"is_parallel": true,
|
91 |
+
"self": 11.193010508013685,
|
92 |
+
"children": {
|
93 |
+
"run_training.setup": {
|
94 |
+
"total": 0.0,
|
95 |
+
"count": 0,
|
96 |
+
"is_parallel": true,
|
97 |
+
"self": 0.0,
|
98 |
+
"children": {
|
99 |
+
"steps_from_proto": {
|
100 |
+
"total": 0.0023420960005751112,
|
101 |
+
"count": 1,
|
102 |
+
"is_parallel": true,
|
103 |
+
"self": 0.0007555850006610854,
|
104 |
+
"children": {
|
105 |
+
"_process_rank_one_or_two_observation": {
|
106 |
+
"total": 0.0015865109999140259,
|
107 |
+
"count": 10,
|
108 |
+
"is_parallel": true,
|
109 |
+
"self": 0.0015865109999140259
|
110 |
+
}
|
111 |
+
}
|
112 |
+
},
|
113 |
+
"UnityEnvironment.step": {
|
114 |
+
"total": 0.03000320299906889,
|
115 |
+
"count": 1,
|
116 |
+
"is_parallel": true,
|
117 |
+
"self": 0.000299719000395271,
|
118 |
+
"children": {
|
119 |
+
"UnityEnvironment._generate_step_input": {
|
120 |
+
"total": 0.0004054569999425439,
|
121 |
+
"count": 1,
|
122 |
+
"is_parallel": true,
|
123 |
+
"self": 0.0004054569999425439
|
124 |
+
},
|
125 |
+
"communicator.exchange": {
|
126 |
+
"total": 0.02832260499963013,
|
127 |
+
"count": 1,
|
128 |
+
"is_parallel": true,
|
129 |
+
"self": 0.02832260499963013
|
130 |
+
},
|
131 |
+
"steps_from_proto": {
|
132 |
+
"total": 0.000975421999100945,
|
133 |
+
"count": 1,
|
134 |
+
"is_parallel": true,
|
135 |
+
"self": 0.00022639300004811957,
|
136 |
+
"children": {
|
137 |
+
"_process_rank_one_or_two_observation": {
|
138 |
+
"total": 0.0007490289990528254,
|
139 |
+
"count": 10,
|
140 |
+
"is_parallel": true,
|
141 |
+
"self": 0.0007490289990528254
|
142 |
+
}
|
143 |
+
}
|
144 |
+
}
|
145 |
+
}
|
146 |
+
}
|
147 |
+
}
|
148 |
+
},
|
149 |
+
"UnityEnvironment.step": {
|
150 |
+
"total": 14.355085931001668,
|
151 |
+
"count": 375,
|
152 |
+
"is_parallel": true,
|
153 |
+
"self": 0.21026207399336272,
|
154 |
+
"children": {
|
155 |
+
"UnityEnvironment._generate_step_input": {
|
156 |
+
"total": 0.17078548300014518,
|
157 |
+
"count": 375,
|
158 |
+
"is_parallel": true,
|
159 |
+
"self": 0.17078548300014518
|
160 |
+
},
|
161 |
+
"communicator.exchange": {
|
162 |
+
"total": 13.284748818992739,
|
163 |
+
"count": 375,
|
164 |
+
"is_parallel": true,
|
165 |
+
"self": 13.284748818992739
|
166 |
+
},
|
167 |
+
"steps_from_proto": {
|
168 |
+
"total": 0.6892895550154208,
|
169 |
+
"count": 375,
|
170 |
+
"is_parallel": true,
|
171 |
+
"self": 0.15102875100092206,
|
172 |
+
"children": {
|
173 |
+
"_process_rank_one_or_two_observation": {
|
174 |
+
"total": 0.5382608040144987,
|
175 |
+
"count": 3750,
|
176 |
+
"is_parallel": true,
|
177 |
+
"self": 0.5382608040144987
|
178 |
+
}
|
179 |
+
}
|
180 |
+
}
|
181 |
+
}
|
182 |
+
}
|
183 |
+
}
|
184 |
+
}
|
185 |
+
}
|
186 |
+
}
|
187 |
+
}
|
188 |
+
}
|
189 |
+
}
|
190 |
+
},
|
191 |
+
"trainer_threads": {
|
192 |
+
"total": 5.262199920252897e-05,
|
193 |
+
"count": 1,
|
194 |
+
"self": 5.262199920252897e-05,
|
195 |
+
"children": {
|
196 |
+
"thread_root": {
|
197 |
+
"total": 0.0,
|
198 |
+
"count": 0,
|
199 |
+
"is_parallel": true,
|
200 |
+
"self": 0.0,
|
201 |
+
"children": {
|
202 |
+
"trainer_advance": {
|
203 |
+
"total": 21.414587259787368,
|
204 |
+
"count": 19862,
|
205 |
+
"is_parallel": true,
|
206 |
+
"self": 0.7230470697813871,
|
207 |
+
"children": {
|
208 |
+
"process_trajectory": {
|
209 |
+
"total": 15.01471466300427,
|
210 |
+
"count": 19862,
|
211 |
+
"is_parallel": true,
|
212 |
+
"self": 14.825209465005173,
|
213 |
+
"children": {
|
214 |
+
"RLTrainer._checkpoint": {
|
215 |
+
"total": 0.1895051979990967,
|
216 |
+
"count": 1,
|
217 |
+
"is_parallel": true,
|
218 |
+
"self": 0.1895051979990967
|
219 |
+
}
|
220 |
+
}
|
221 |
+
},
|
222 |
+
"_update_policy": {
|
223 |
+
"total": 5.676825527001711,
|
224 |
+
"count": 1,
|
225 |
+
"is_parallel": true,
|
226 |
+
"self": 0.7520899630035274,
|
227 |
+
"children": {
|
228 |
+
"TorchPPOOptimizer.update": {
|
229 |
+
"total": 4.924735563998183,
|
230 |
+
"count": 48,
|
231 |
+
"is_parallel": true,
|
232 |
+
"self": 4.924735563998183
|
233 |
+
}
|
234 |
+
}
|
235 |
+
}
|
236 |
+
}
|
237 |
+
}
|
238 |
+
}
|
239 |
+
}
|
240 |
+
}
|
241 |
+
},
|
242 |
+
"TrainerController._save_models": {
|
243 |
+
"total": 0.1969587040002807,
|
244 |
+
"count": 1,
|
245 |
+
"self": 0.0013678909999725875,
|
246 |
+
"children": {
|
247 |
+
"RLTrainer._checkpoint": {
|
248 |
+
"total": 0.19559081300030812,
|
249 |
+
"count": 1,
|
250 |
+
"self": 0.19559081300030812
|
251 |
+
}
|
252 |
+
}
|
253 |
+
}
|
254 |
+
}
|
255 |
+
}
|
256 |
+
}
|
257 |
+
}
|
run_logs/training_status.json
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"SnowballTarget": {
|
3 |
+
"checkpoints": [
|
4 |
+
{
|
5 |
+
"steps": 149984,
|
6 |
+
"file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-149984.onnx",
|
7 |
+
"reward": null,
|
8 |
+
"creation_time": 1714275525.8500757,
|
9 |
+
"auxillary_file_paths": [
|
10 |
+
"results/SnowballTarget1/SnowballTarget/SnowballTarget-149984.pt"
|
11 |
+
]
|
12 |
+
},
|
13 |
+
{
|
14 |
+
"steps": 153592,
|
15 |
+
"file_path": "results/SnowballTarget1/SnowballTarget/SnowballTarget-153592.onnx",
|
16 |
+
"reward": 24.09090909090909,
|
17 |
+
"creation_time": 1714275544.602692,
|
18 |
+
"auxillary_file_paths": [
|
19 |
+
"results/SnowballTarget1/SnowballTarget/SnowballTarget-153592.pt"
|
20 |
+
]
|
21 |
+
}
|
22 |
+
],
|
23 |
+
"final_checkpoint": {
|
24 |
+
"steps": 153592,
|
25 |
+
"file_path": "results/SnowballTarget1/SnowballTarget.onnx",
|
26 |
+
"reward": 24.09090909090909,
|
27 |
+
"creation_time": 1714275544.602692,
|
28 |
+
"auxillary_file_paths": [
|
29 |
+
"results/SnowballTarget1/SnowballTarget/SnowballTarget-153592.pt"
|
30 |
+
]
|
31 |
+
}
|
32 |
+
},
|
33 |
+
"metadata": {
|
34 |
+
"stats_format_version": "0.3.0",
|
35 |
+
"mlagents_version": "1.1.0.dev0",
|
36 |
+
"torch_version": "2.3.0+cu121"
|
37 |
+
}
|
38 |
+
}
|