VicBeltran commited on
Commit
22f0e9d
1 Parent(s): 9f4ca84

first test commit

Browse files
Pyramids.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16460465a48d55b9a8768376f292ec39c7b708b392db34731dd6321d220261ea
3
+ size 1418184
Pyramids/Pyramids-100003.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16460465a48d55b9a8768376f292ec39c7b708b392db34731dd6321d220261ea
3
+ size 1418184
Pyramids/Pyramids-100003.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17a3646c0f2d7688b98d3be5753c410cb236ba237aa6dd46d27273e921ef65f2
3
+ size 8650990
Pyramids/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17a3646c0f2d7688b98d3be5753c410cb236ba237aa6dd46d27273e921ef65f2
3
+ size 8650990
Pyramids/events.out.tfevents.1692017720.DESKTOP-9GKAG7F.1552.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e319d97640786bbf36dd9cec2c3f39ca4c79d9a4c89f096bde1c185a744c1cc5
3
+ size 22916
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: VicBeltran/ppo-PyramidsUnity
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": 248, "buffer_size": 2048, "learning_rate": 0.0003, "beta": 0.01, "epsilon": 0.2, "lambd": 0.95, "num_epoch": 5, "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}}, "rnd": {"gamma": 0.99, "strength": 0.05, "network_settings": {"normalize": false, "hidden_units": 64, "num_layers": 3, "vis_encode_type": "simple", "memory": null, "goal_conditioning_type": "hyper", "deterministic": false}, "learning_rate": 0.0001, "encoding_size": null}}, "init_path": null, "keep_checkpoints": 5, "even_checkpoints": false, "max_steps": 100000, "time_horizon": 128, "summary_freq": 30000, "threaded": false, "self_play": null, "behavioral_cloning": null}}, "env_settings": {"env_path": "./training-envs-executables/linux/Pyramids/Pyramids", "env_args": null, "base_port": 5005, "num_envs": 1, "num_areas": 1, "seed": -1, "max_lifetime_restarts": 10, "restarts_rate_limit_n": 1, "restarts_rate_limit_period_s": 60}, "engine_settings": {"width": 84, "height": 84, "quality_level": 5, "time_scale": 20, "target_frame_rate": -1, "capture_frame_rate": 60, "no_graphics": false}, "environment_parameters": null, "checkpoint_settings": {"run_id": "Pyramids Training", "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,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_settings: null
2
+ behaviors:
3
+ Pyramids:
4
+ trainer_type: ppo
5
+ hyperparameters:
6
+ batch_size: 248
7
+ buffer_size: 2048
8
+ learning_rate: 0.0003
9
+ beta: 0.01
10
+ epsilon: 0.2
11
+ lambd: 0.95
12
+ num_epoch: 5
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
+ rnd:
39
+ gamma: 0.99
40
+ strength: 0.05
41
+ network_settings:
42
+ normalize: false
43
+ hidden_units: 64
44
+ num_layers: 3
45
+ vis_encode_type: simple
46
+ memory: null
47
+ goal_conditioning_type: hyper
48
+ deterministic: false
49
+ learning_rate: 0.0001
50
+ encoding_size: null
51
+ init_path: null
52
+ keep_checkpoints: 5
53
+ even_checkpoints: false
54
+ max_steps: 100000
55
+ time_horizon: 128
56
+ summary_freq: 30000
57
+ threaded: false
58
+ self_play: null
59
+ behavioral_cloning: null
60
+ env_settings:
61
+ env_path: ./training-envs-executables/linux/Pyramids/Pyramids
62
+ env_args: null
63
+ base_port: 5005
64
+ num_envs: 1
65
+ num_areas: 1
66
+ seed: -1
67
+ max_lifetime_restarts: 10
68
+ restarts_rate_limit_n: 1
69
+ restarts_rate_limit_period_s: 60
70
+ engine_settings:
71
+ width: 84
72
+ height: 84
73
+ quality_level: 5
74
+ time_scale: 20
75
+ target_frame_rate: -1
76
+ capture_frame_rate: 60
77
+ no_graphics: false
78
+ environment_parameters: null
79
+ checkpoint_settings:
80
+ run_id: Pyramids Training
81
+ initialize_from: null
82
+ load_model: false
83
+ resume: false
84
+ force: true
85
+ train_model: false
86
+ inference: false
87
+ results_dir: results
88
+ torch_settings:
89
+ device: null
90
+ debug: false
run_logs/Player-0.log ADDED
@@ -0,0 +1,313 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = '/home/victor/pythonprojects/ml-agents/training-envs-executables/linux/Pyramids/Pyramids_Data/Managed'
2
+ Mono config path = '/home/victor/pythonprojects/ml-agents/training-envs-executables/linux/Pyramids/Pyramids_Data/MonoBleedingEdge/etc'
3
+ Found 1 interfaces on host : 0) 172.24.50.6
4
+ Multi-casting "[IP] 172.24.50.6 [Port] 55384 [Flags] 2 [Guid] 3686515790 [EditorId] 764847374 [Version] 1048832 [Id] LinuxPlayer(13,172.24.50.6) [Debug] 0 [PackageName] LinuxPlayer [ProjectName] UnityEnvironment" to [225.0.0.222:54997]...
5
+ Preloaded 'lib_burst_generated.so'
6
+ Preloaded 'libgrpc_csharp_ext.x64.so'
7
+ Display 0 'XWAYLAND0': 2560x1080 (primary device).
8
+ Display 1 'XWAYLAND1 27"': 1920x1080 (secondary device).
9
+ Desktop is 2560 x 1080 @ 60 Hz
10
+ Invalid initial resolution 80 x 80 - forcing to 100 x 100
11
+ Initialize engine version: 2021.3.5f1 (40eb3a945986)
12
+ [Subsystems] Discovering subsystems at path /home/victor/pythonprojects/ml-agents/training-envs-executables/linux/Pyramids/Pyramids_Data/UnitySubsystems
13
+ GfxDevice: creating device client; threaded=1; jobified=0
14
+ Renderer: D3D12 (NVIDIA GeForce RTX 2060)
15
+ Vendor: Microsoft Corporation
16
+ Version: 4.2 (Core Profile) Mesa 23.0.4-0ubuntu1~22.04.1
17
+ GLES: 0
18
+ GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_gpu_shader_int64 GL_AMD_multi_draw_indirect GL_AMD_shader_trinary_minmax GL_AMD_texture_texture4 GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ARB_ES2_compatibility GL_ARB_ES3_1_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_clip_control GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_compute_variable_group_size GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp 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_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
19
+ _ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gpu_shader5 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_pixel_buffer_object GL_ARB_point_sprite GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_bit_encoding GL_ARB_shader_draw_parameters GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_storage_buffer_object GL_
20
+ 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_tessellation_shader 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_filter_anisotropic GL_ARB_texture_float GL_ARB_texture_gather 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_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced 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
21
+ _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_EXT_EGL_image_storage GL_EXT_EGL_sync GL_EXT_abgr GL_EXT_blend_equation_separate GL_EXT_debug_label 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_memory_object GL_EXT_memory_object_fd GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_provoking_vertex GL_EXT_semaphore GL_EXT_semaphore_fd GL_EXT_shader_integer_mix GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_sRGB 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_ve
22
+ rtex_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_robust_buffer_access_behavior GL_KHR_robustness 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_NV_conditional_render GL_NV_copy_image GL_NV_depth_clamp GL_NV_packed_depth_stencil GL_NV_vdpau_interop GL_OES_EGL_image GL_S3_s3tc
23
+ OPENGL LOG: Creating OpenGL 4.2 graphics device ; Context level <OpenGL 4.2> ; Context handle 28617968
24
+ Begin MonoManager ReloadAssembly
25
+ - Completed reload, in 0.066 seconds
26
+ Default vsync count 1
27
+ requesting resize 80 x 80
28
+ resizing window to 80 x 80
29
+ Desktop is 2560 x 1080 @ 60 Hz
30
+ Desktop is 2560 x 1080 @ 60 Hz
31
+ UnloadTime: 0.836900 ms
32
+ Setting up 4 worker threads for Enlighten.
33
+ requesting resize 84 x 84
34
+ resizing window to 84 x 84
35
+ Desktop is 2560 x 1080 @ 60 Hz
36
+ PlayerConnection::CleanupMemory Statistics:
37
+ [ALLOC_TEMP_TLS] TLS Allocator
38
+ StackAllocators :
39
+ [ALLOC_TEMP_MAIN]
40
+ Peak usage frame count: [16.0 KB-32.0 KB]: 1175 frames, [32.0 KB-64.0 KB]: 643 frames, [64.0 KB-128.0 KB]: 71 frames, [2.0 MB-4.0 MB]: 1 frames
41
+ Initial Block Size 4.0 MB
42
+ Current Block Size 4.0 MB
43
+ Peak Allocated Bytes 2.0 MB
44
+ Overflow Count 0
45
+ [ALLOC_TEMP_Background Job.Worker 8]
46
+ Initial Block Size 32.0 KB
47
+ Current Block Size 32.0 KB
48
+ Peak Allocated Bytes 0 B
49
+ Overflow Count 0
50
+ [ALLOC_TEMP_Background Job.Worker 10]
51
+ Initial Block Size 32.0 KB
52
+ Current Block Size 32.0 KB
53
+ Peak Allocated Bytes 0 B
54
+ Overflow Count 0
55
+ [ALLOC_TEMP_Job.Worker 4]
56
+ Initial Block Size 256.0 KB
57
+ Current Block Size 256.0 KB
58
+ Peak Allocated Bytes 12.0 KB
59
+ Overflow Count 0
60
+ [ALLOC_TEMP_Background Job.Worker 6]
61
+ Initial Block Size 32.0 KB
62
+ Current Block Size 32.0 KB
63
+ Peak Allocated Bytes 0 B
64
+ Overflow Count 0
65
+ [ALLOC_TEMP_Background Job.Worker 1]
66
+ Initial Block Size 32.0 KB
67
+ Current Block Size 32.0 KB
68
+ Peak Allocated Bytes 0 B
69
+ Overflow Count 0
70
+ [ALLOC_TEMP_Background Job.Worker 11]
71
+ Initial Block Size 32.0 KB
72
+ Current Block Size 32.0 KB
73
+ Peak Allocated Bytes 0 B
74
+ Overflow Count 0
75
+ [ALLOC_TEMP_Background Job.Worker 3]
76
+ Initial Block Size 32.0 KB
77
+ Current Block Size 32.0 KB
78
+ Peak Allocated Bytes 0 B
79
+ Overflow Count 0
80
+ [ALLOC_TEMP_BatchDeleteObjects]
81
+ Initial Block Size 64.0 KB
82
+ Current Block Size 64.0 KB
83
+ Peak Allocated Bytes 0 B
84
+ Overflow Count 0
85
+ [ALLOC_TEMP_AUDIO_FMOD stream thread]
86
+ Initial Block Size 64.0 KB
87
+ Current Block Size 64.0 KB
88
+ Peak Allocated Bytes 0 B
89
+ Overflow Count 0
90
+ [ALLOC_TEMP_Background Job.Worker 2]
91
+ Initial Block Size 32.0 KB
92
+ Current Block Size 32.0 KB
93
+ Peak Allocated Bytes 0 B
94
+ Overflow Count 0
95
+ [ALLOC_TEMP_Background Job.Worker 7]
96
+ Initial Block Size 32.0 KB
97
+ Current Block Size 32.0 KB
98
+ Peak Allocated Bytes 0 B
99
+ Overflow Count 0
100
+ [ALLOC_TEMP_Background Job.Worker 15]
101
+ Initial Block Size 32.0 KB
102
+ Current Block Size 32.0 KB
103
+ Peak Allocated Bytes 0 B
104
+ Overflow Count 0
105
+ [ALLOC_TEMP_Job.Worker 1]
106
+ Initial Block Size 256.0 KB
107
+ Current Block Size 256.0 KB
108
+ Peak Allocated Bytes 12.0 KB
109
+ Overflow Count 0
110
+ [ALLOC_TEMP_Loading.PreloadManager]
111
+ Initial Block Size 256.0 KB
112
+ Current Block Size 320.0 KB
113
+ Peak Allocated Bytes 251.6 KB
114
+ Overflow Count 4
115
+ [ALLOC_TEMP_AUDIO_FMOD PulseAudio Mixer]
116
+ Initial Block Size 64.0 KB
117
+ Current Block Size 64.0 KB
118
+ Peak Allocated Bytes 0 B
119
+ Overflow Count 0
120
+ [ALLOC_TEMP_Profiler.Dispatcher]
121
+ Initial Block Size 64.0 KB
122
+ Current Block Size 64.0 KB
123
+ Peak Allocated Bytes 0.9 KB
124
+ Overflow Count 0
125
+ [ALLOC_TEMP_Job.Worker 3]
126
+ Initial Block Size 256.0 KB
127
+ Current Block Size 256.0 KB
128
+ Peak Allocated Bytes 12.0 KB
129
+ Overflow Count 0
130
+ [ALLOC_TEMP_Background Job.Worker 12]
131
+ Initial Block Size 32.0 KB
132
+ Current Block Size 32.0 KB
133
+ Peak Allocated Bytes 0 B
134
+ Overflow Count 0
135
+ [ALLOC_TEMP_AssetGarbageCollectorHelper] x 7
136
+ Initial Block Size 64.0 KB
137
+ Current Block Size 64.0 KB
138
+ Peak Allocated Bytes 0 B
139
+ Overflow Count 0
140
+ [ALLOC_TEMP_Background Job.Worker 5]
141
+ Initial Block Size 32.0 KB
142
+ Current Block Size 32.0 KB
143
+ Peak Allocated Bytes 0 B
144
+ Overflow Count 0
145
+ [ALLOC_TEMP_Background Job.Worker 13]
146
+ Initial Block Size 32.0 KB
147
+ Current Block Size 32.0 KB
148
+ Peak Allocated Bytes 0 B
149
+ Overflow Count 0
150
+ [ALLOC_TEMP_Job.Worker 2]
151
+ Initial Block Size 256.0 KB
152
+ Current Block Size 256.0 KB
153
+ Peak Allocated Bytes 12.0 KB
154
+ Overflow Count 0
155
+ [ALLOC_TEMP_Background Job.Worker 0]
156
+ Initial Block Size 32.0 KB
157
+ Current Block Size 32.0 KB
158
+ Peak Allocated Bytes 0 B
159
+ Overflow Count 0
160
+ [ALLOC_TEMP_Background Job.Worker 4]
161
+ Initial Block Size 32.0 KB
162
+ Current Block Size 32.0 KB
163
+ Peak Allocated Bytes 0 B
164
+ Overflow Count 0
165
+ [ALLOC_TEMP_Job.Worker 0]
166
+ Initial Block Size 256.0 KB
167
+ Current Block Size 256.0 KB
168
+ Peak Allocated Bytes 12.0 KB
169
+ Overflow Count 0
170
+ [ALLOC_TEMP_Job.Worker 5]
171
+ Initial Block Size 256.0 KB
172
+ Current Block Size 256.0 KB
173
+ Peak Allocated Bytes 12.0 KB
174
+ Overflow Count 0
175
+ [ALLOC_TEMP_Background Job.Worker 14]
176
+ Initial Block Size 32.0 KB
177
+ Current Block Size 32.0 KB
178
+ Peak Allocated Bytes 0 B
179
+ Overflow Count 0
180
+ [ALLOC_TEMP_Job.Worker 6]
181
+ Initial Block Size 256.0 KB
182
+ Current Block Size 256.0 KB
183
+ Peak Allocated Bytes 12.0 KB
184
+ Overflow Count 0
185
+ [ALLOC_TEMP_EnlightenWorker] x 4
186
+ Initial Block Size 64.0 KB
187
+ Current Block Size 64.0 KB
188
+ Peak Allocated Bytes 0 B
189
+ Overflow Count 0
190
+ [ALLOC_TEMP_UnityGfxDeviceWorker]
191
+ Initial Block Size 256.0 KB
192
+ Current Block Size 256.0 KB
193
+ Peak Allocated Bytes 45.0 KB
194
+ Overflow Count 0
195
+ [ALLOC_TEMP_Background Job.Worker 9]
196
+ Initial Block Size 32.0 KB
197
+ Current Block Size 32.0 KB
198
+ Peak Allocated Bytes 0 B
199
+ Overflow Count 0
200
+ [ALLOC_TEMP_Loading.AsyncRead]
201
+ Initial Block Size 64.0 KB
202
+ Current Block Size 64.0 KB
203
+ Peak Allocated Bytes 128 B
204
+ Overflow Count 0
205
+ [ALLOC_MEMORYPROFILER]
206
+ Peak usage frame count: [0.5 MB-1.0 MB]: 299 frames, [1.0 MB-2.0 MB]: 1591 frames
207
+ Requested Block Size 1.0 MB
208
+ Peak Block count 2
209
+ Peak Allocated memory 1.6 MB
210
+ Peak Large allocation bytes 0 B
211
+ [ALLOC_DEFAULT] Dual Thread Allocator
212
+ Peak main deferred allocation count 11816
213
+ [ALLOC_BUCKET]
214
+ Large Block size 4.0 MB
215
+ Used Block count 1
216
+ Peak Allocated bytes 1.9 MB
217
+ [ALLOC_DEFAULT_MAIN]
218
+ Peak usage frame count: [16.0 MB-32.0 MB]: 1877 frames, [32.0 MB-64.0 MB]: 13 frames
219
+ Requested Block Size 16.0 MB
220
+ Peak Block count 3
221
+ Peak Allocated memory 38.0 MB
222
+ Peak Large allocation bytes 0 B
223
+ [ALLOC_DEFAULT_THREAD]
224
+ Peak usage frame count: [16.0 MB-32.0 MB]: 1890 frames
225
+ Requested Block Size 16.0 MB
226
+ Peak Block count 1
227
+ Peak Allocated memory 27.1 MB
228
+ Peak Large allocation bytes 16.0 MB
229
+ [ALLOC_TEMP_JOB_1_FRAME]
230
+ Initial Block Size 2.0 MB
231
+ Used Block Count 1
232
+ Overflow Count (too large) 0
233
+ Overflow Count (full) 0
234
+ [ALLOC_TEMP_JOB_2_FRAMES]
235
+ Initial Block Size 2.0 MB
236
+ Used Block Count 1
237
+ Overflow Count (too large) 0
238
+ Overflow Count (full) 0
239
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
240
+ Initial Block Size 2.0 MB
241
+ Used Block Count 4
242
+ Overflow Count (too large) 0
243
+ Overflow Count (full) 0
244
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
245
+ Initial Block Size 1.0 MB
246
+ Used Block Count 3
247
+ Overflow Count (too large) 0
248
+ Overflow Count (full) 0
249
+ [ALLOC_GFX] Dual Thread Allocator
250
+ Peak main deferred allocation count 1
251
+ [ALLOC_BUCKET]
252
+ Large Block size 4.0 MB
253
+ Used Block count 1
254
+ Peak Allocated bytes 1.9 MB
255
+ [ALLOC_GFX_MAIN]
256
+ Peak usage frame count: [32.0 KB-64.0 KB]: 1889 frames, [2.0 MB-4.0 MB]: 1 frames
257
+ Requested Block Size 16.0 MB
258
+ Peak Block count 1
259
+ Peak Allocated memory 2.7 MB
260
+ Peak Large allocation bytes 0 B
261
+ [ALLOC_GFX_THREAD]
262
+ Peak usage frame count: [64.0 KB-128.0 KB]: 1890 frames
263
+ Requested Block Size 16.0 MB
264
+ Peak Block count 1
265
+ Peak Allocated memory 74.9 KB
266
+ Peak Large allocation bytes 0 B
267
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
268
+ Peak main deferred allocation count 1
269
+ [ALLOC_BUCKET]
270
+ Large Block size 4.0 MB
271
+ Used Block count 1
272
+ Peak Allocated bytes 1.9 MB
273
+ [ALLOC_CACHEOBJECTS_MAIN]
274
+ Peak usage frame count: [1.0 MB-2.0 MB]: 1890 frames
275
+ Requested Block Size 4.0 MB
276
+ Peak Block count 1
277
+ Peak Allocated memory 1.8 MB
278
+ Peak Large allocation bytes 0 B
279
+ [ALLOC_CACHEOBJECTS_THREAD]
280
+ Peak usage frame count: [4.0 MB-8.0 MB]: 1890 frames
281
+ Requested Block Size 4.0 MB
282
+ Peak Block count 2
283
+ Peak Allocated memory 7.0 MB
284
+ Peak Large allocation bytes 0 B
285
+ [ALLOC_TYPETREE] Dual Thread Allocator
286
+ Peak main deferred allocation count 0
287
+ [ALLOC_BUCKET]
288
+ Large Block size 4.0 MB
289
+ Used Block count 1
290
+ Peak Allocated bytes 1.9 MB
291
+ [ALLOC_TYPETREE_MAIN]
292
+ Peak usage frame count: [0-1.0 KB]: 1890 frames
293
+ Requested Block Size 2.0 MB
294
+ Peak Block count 1
295
+ Peak Allocated memory 1.0 KB
296
+ Peak Large allocation bytes 0 B
297
+ [ALLOC_TYPETREE_THREAD]
298
+ Peak usage frame count: [1.0 KB-2.0 KB]: 1890 frames
299
+ Requested Block Size 2.0 MB
300
+ Peak Block count 1
301
+ Peak Allocated memory 1.9 KB
302
+ Peak Large allocation bytes 0 B
303
+ [ALLOC_PROFILER]
304
+ Peak usage frame count: [16.0 KB-32.0 KB]: 1 frames, [32.0 KB-64.0 KB]: 1889 frames
305
+ Requested Block Size 16.0 MB
306
+ Peak Block count 1
307
+ Peak Allocated memory 34.6 KB
308
+ Peak Large allocation bytes 0 B
309
+ [ALLOC_PROFILER_BUCKET]
310
+ Large Block size 4.0 MB
311
+ Used Block count 1
312
+ Peak Allocated bytes 396 B
313
+ ##utp:{"type":"MemoryLeaks","version":2,"phase":"Immediate","time":1692017912384,"processId":1584,"allocatedMemory":2093101,"memoryLabels":[{"Default":9033},{"Permanent":1264},{"NewDelete":130484},{"Thread":34756},{"Manager":14031},{"VertexData":12},{"Geometry":280},{"Texture":16},{"Shader":67733},{"Material":24},{"GfxDevice":35248},{"Animation":304},{"Audio":3976},{"Physics":288},{"Serialization":672},{"Input":9176},{"JobScheduler":200},{"Mono":40},{"ScriptingNativeRuntime":216},{"BaseObject":1609212},{"Resource":592},{"Renderer":1936},{"Transform":48},{"File":800},{"WebCam":24},{"Culling":40},{"Terrain":953},{"Wind":24},{"String":3540},{"DynamicArray":30872},{"HashMap":7680},{"Utility":3808},{"PoolAlloc":1160},{"TypeTree":1792},{"ScriptManager":80},{"RuntimeInitializeOnLoadManager":72},{"SpriteAtlas":112},{"GI":3272},{"Unet":16},{"Director":7760},{"WebRequest":720},{"VR":45473},{"SceneManager":424},{"Video":32},{"LazyScriptCache":32},{"NativeArray":384},{"Camera":25},{"Secure":1},{"SerializationCache":624},{"APIUpdating":5872},{"Subsystems":384},{"VirtualTexturing":57552},{"AssetReference":32}]}
run_logs/timers.json ADDED
@@ -0,0 +1,391 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "gauges": {
4
+ "Pyramids.Policy.Entropy.mean": {
5
+ "value": 0.5920994281768799,
6
+ "min": 0.5920994281768799,
7
+ "max": 1.396640419960022,
8
+ "count": 3
9
+ },
10
+ "Pyramids.Policy.Entropy.sum": {
11
+ "value": 17772.45703125,
12
+ "min": 17772.45703125,
13
+ "max": 42368.484375,
14
+ "count": 3
15
+ },
16
+ "Pyramids.Step.mean": {
17
+ "value": 89895.0,
18
+ "min": 29952.0,
19
+ "max": 89895.0,
20
+ "count": 3
21
+ },
22
+ "Pyramids.Step.sum": {
23
+ "value": 89895.0,
24
+ "min": 29952.0,
25
+ "max": 89895.0,
26
+ "count": 3
27
+ },
28
+ "Pyramids.Policy.ExtrinsicValueEstimate.mean": {
29
+ "value": -0.08060117810964584,
30
+ "min": -0.08060117810964584,
31
+ "max": 0.1492552012205124,
32
+ "count": 3
33
+ },
34
+ "Pyramids.Policy.ExtrinsicValueEstimate.sum": {
35
+ "value": -19.50548553466797,
36
+ "min": -19.50548553466797,
37
+ "max": 35.37348175048828,
38
+ "count": 3
39
+ },
40
+ "Pyramids.Policy.RndValueEstimate.mean": {
41
+ "value": 0.910521388053894,
42
+ "min": 0.910521388053894,
43
+ "max": 1.4801007509231567,
44
+ "count": 3
45
+ },
46
+ "Pyramids.Policy.RndValueEstimate.sum": {
47
+ "value": 220.34617614746094,
48
+ "min": 220.34617614746094,
49
+ "max": 356.70428466796875,
50
+ "count": 3
51
+ },
52
+ "Pyramids.Losses.PolicyLoss.mean": {
53
+ "value": 0.04922671732786335,
54
+ "min": 0.04922671732786335,
55
+ "max": 0.05336748282426961,
56
+ "count": 3
57
+ },
58
+ "Pyramids.Losses.PolicyLoss.sum": {
59
+ "value": 0.5907206079343602,
60
+ "min": 0.3735723797698873,
61
+ "max": 0.5907206079343602,
62
+ "count": 3
63
+ },
64
+ "Pyramids.Losses.ValueLoss.mean": {
65
+ "value": 0.002812625459016786,
66
+ "min": 0.002812625459016786,
67
+ "max": 0.058140459392761475,
68
+ "count": 3
69
+ },
70
+ "Pyramids.Losses.ValueLoss.sum": {
71
+ "value": 0.03375150550820143,
72
+ "min": 0.03375150550820143,
73
+ "max": 0.40698321574933033,
74
+ "count": 3
75
+ },
76
+ "Pyramids.Policy.LearningRate.mean": {
77
+ "value": 7.774157408616665e-05,
78
+ "min": 7.774157408616665e-05,
79
+ "max": 0.0002515063018788571,
80
+ "count": 3
81
+ },
82
+ "Pyramids.Policy.LearningRate.sum": {
83
+ "value": 0.0009328988890339999,
84
+ "min": 0.0009328988890339999,
85
+ "max": 0.0017605441131519997,
86
+ "count": 3
87
+ },
88
+ "Pyramids.Policy.Epsilon.mean": {
89
+ "value": 0.12591383333333336,
90
+ "min": 0.12591383333333336,
91
+ "max": 0.1838354285714286,
92
+ "count": 3
93
+ },
94
+ "Pyramids.Policy.Epsilon.sum": {
95
+ "value": 1.5109660000000003,
96
+ "min": 1.2868480000000002,
97
+ "max": 1.5565020000000003,
98
+ "count": 3
99
+ },
100
+ "Pyramids.Policy.Beta.mean": {
101
+ "value": 0.0025987919500000006,
102
+ "min": 0.0025987919500000006,
103
+ "max": 0.008385159314285715,
104
+ "count": 3
105
+ },
106
+ "Pyramids.Policy.Beta.sum": {
107
+ "value": 0.031185503400000005,
108
+ "min": 0.031185503400000005,
109
+ "max": 0.0586961152,
110
+ "count": 3
111
+ },
112
+ "Pyramids.Losses.RNDLoss.mean": {
113
+ "value": 0.12982051074504852,
114
+ "min": 0.12982051074504852,
115
+ "max": 0.4058314263820648,
116
+ "count": 3
117
+ },
118
+ "Pyramids.Losses.RNDLoss.sum": {
119
+ "value": 1.557846188545227,
120
+ "min": 1.557846188545227,
121
+ "max": 2.840820074081421,
122
+ "count": 3
123
+ },
124
+ "Pyramids.Environment.EpisodeLength.mean": {
125
+ "value": 962.030303030303,
126
+ "min": 962.030303030303,
127
+ "max": 999.0,
128
+ "count": 3
129
+ },
130
+ "Pyramids.Environment.EpisodeLength.sum": {
131
+ "value": 31747.0,
132
+ "min": 15984.0,
133
+ "max": 31843.0,
134
+ "count": 3
135
+ },
136
+ "Pyramids.Environment.CumulativeReward.mean": {
137
+ "value": -0.7204667153683576,
138
+ "min": -1.0000000521540642,
139
+ "max": -0.7204667153683576,
140
+ "count": 3
141
+ },
142
+ "Pyramids.Environment.CumulativeReward.sum": {
143
+ "value": -23.7754016071558,
144
+ "min": -27.873001739382744,
145
+ "max": -16.000000834465027,
146
+ "count": 3
147
+ },
148
+ "Pyramids.Policy.ExtrinsicReward.mean": {
149
+ "value": -0.7204667153683576,
150
+ "min": -1.0000000521540642,
151
+ "max": -0.7204667153683576,
152
+ "count": 3
153
+ },
154
+ "Pyramids.Policy.ExtrinsicReward.sum": {
155
+ "value": -23.7754016071558,
156
+ "min": -27.873001739382744,
157
+ "max": -16.000000834465027,
158
+ "count": 3
159
+ },
160
+ "Pyramids.Policy.RndReward.mean": {
161
+ "value": 7.310272389289104,
162
+ "min": 7.310272389289104,
163
+ "max": 37.97674008458853,
164
+ "count": 3
165
+ },
166
+ "Pyramids.Policy.RndReward.sum": {
167
+ "value": 241.23898884654045,
168
+ "min": 241.23898884654045,
169
+ "max": 607.6278413534164,
170
+ "count": 3
171
+ },
172
+ "Pyramids.IsTraining.mean": {
173
+ "value": 1.0,
174
+ "min": 1.0,
175
+ "max": 1.0,
176
+ "count": 3
177
+ },
178
+ "Pyramids.IsTraining.sum": {
179
+ "value": 1.0,
180
+ "min": 1.0,
181
+ "max": 1.0,
182
+ "count": 3
183
+ }
184
+ },
185
+ "metadata": {
186
+ "timer_format_version": "0.1.0",
187
+ "start_time_seconds": "1692017717",
188
+ "python_version": "3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0]",
189
+ "command_line_arguments": "/home/victor/.local/bin/mlagents-learn ./config/ppo/PyramidsRND.yaml --env=./training-envs-executables/linux/Pyramids/Pyramids --run-id=Pyramids Training --force",
190
+ "mlagents_version": "0.31.0.dev0",
191
+ "mlagents_envs_version": "0.31.0.dev0",
192
+ "communication_protocol_version": "1.5.0",
193
+ "pytorch_version": "1.11.0+cu102",
194
+ "numpy_version": "1.21.2",
195
+ "end_time_seconds": "1692017912"
196
+ },
197
+ "total": 195.31421026000044,
198
+ "count": 1,
199
+ "self": 0.3698744060006902,
200
+ "children": {
201
+ "run_training.setup": {
202
+ "total": 0.020221199999923556,
203
+ "count": 1,
204
+ "self": 0.020221199999923556
205
+ },
206
+ "TrainerController.start_learning": {
207
+ "total": 194.92411465399982,
208
+ "count": 1,
209
+ "self": 0.11492089701278019,
210
+ "children": {
211
+ "TrainerController._reset_env": {
212
+ "total": 5.843547811000008,
213
+ "count": 1,
214
+ "self": 5.843547811000008
215
+ },
216
+ "TrainerController.advance": {
217
+ "total": 188.84464944398724,
218
+ "count": 6309,
219
+ "self": 0.107466295982249,
220
+ "children": {
221
+ "env_step": {
222
+ "total": 118.0586339260035,
223
+ "count": 6309,
224
+ "self": 98.41974282002502,
225
+ "children": {
226
+ "SubprocessEnvManager._take_step": {
227
+ "total": 19.56722700800401,
228
+ "count": 6309,
229
+ "self": 0.40011209500471523,
230
+ "children": {
231
+ "TorchPolicy.evaluate": {
232
+ "total": 19.167114912999295,
233
+ "count": 6297,
234
+ "self": 19.167114912999295
235
+ }
236
+ }
237
+ },
238
+ "workers": {
239
+ "total": 0.07166409797446249,
240
+ "count": 6309,
241
+ "self": 0.0,
242
+ "children": {
243
+ "worker_root": {
244
+ "total": 194.55289205097688,
245
+ "count": 6309,
246
+ "is_parallel": true,
247
+ "self": 103.75594365197367,
248
+ "children": {
249
+ "run_training.setup": {
250
+ "total": 0.0,
251
+ "count": 0,
252
+ "is_parallel": true,
253
+ "self": 0.0,
254
+ "children": {
255
+ "steps_from_proto": {
256
+ "total": 0.0013616999999612744,
257
+ "count": 1,
258
+ "is_parallel": true,
259
+ "self": 0.0004546000000118511,
260
+ "children": {
261
+ "_process_rank_one_or_two_observation": {
262
+ "total": 0.0009070999999494234,
263
+ "count": 8,
264
+ "is_parallel": true,
265
+ "self": 0.0009070999999494234
266
+ }
267
+ }
268
+ },
269
+ "UnityEnvironment.step": {
270
+ "total": 0.03046879999965313,
271
+ "count": 1,
272
+ "is_parallel": true,
273
+ "self": 0.00023869999995440594,
274
+ "children": {
275
+ "UnityEnvironment._generate_step_input": {
276
+ "total": 0.0002528999998503423,
277
+ "count": 1,
278
+ "is_parallel": true,
279
+ "self": 0.0002528999998503423
280
+ },
281
+ "communicator.exchange": {
282
+ "total": 0.028661299999839684,
283
+ "count": 1,
284
+ "is_parallel": true,
285
+ "self": 0.028661299999839684
286
+ },
287
+ "steps_from_proto": {
288
+ "total": 0.0013159000000086962,
289
+ "count": 1,
290
+ "is_parallel": true,
291
+ "self": 0.00026789999992615776,
292
+ "children": {
293
+ "_process_rank_one_or_two_observation": {
294
+ "total": 0.0010480000000825385,
295
+ "count": 8,
296
+ "is_parallel": true,
297
+ "self": 0.0010480000000825385
298
+ }
299
+ }
300
+ }
301
+ }
302
+ }
303
+ }
304
+ },
305
+ "UnityEnvironment.step": {
306
+ "total": 90.79694839900321,
307
+ "count": 6308,
308
+ "is_parallel": true,
309
+ "self": 1.5050858869885815,
310
+ "children": {
311
+ "UnityEnvironment._generate_step_input": {
312
+ "total": 1.172996385992974,
313
+ "count": 6308,
314
+ "is_parallel": true,
315
+ "self": 1.172996385992974
316
+ },
317
+ "communicator.exchange": {
318
+ "total": 83.50352456999826,
319
+ "count": 6308,
320
+ "is_parallel": true,
321
+ "self": 83.50352456999826
322
+ },
323
+ "steps_from_proto": {
324
+ "total": 4.615341556023395,
325
+ "count": 6308,
326
+ "is_parallel": true,
327
+ "self": 1.0762646860112,
328
+ "children": {
329
+ "_process_rank_one_or_two_observation": {
330
+ "total": 3.5390768700121953,
331
+ "count": 50464,
332
+ "is_parallel": true,
333
+ "self": 3.5390768700121953
334
+ }
335
+ }
336
+ }
337
+ }
338
+ }
339
+ }
340
+ }
341
+ }
342
+ }
343
+ }
344
+ },
345
+ "trainer_advance": {
346
+ "total": 70.6785492220015,
347
+ "count": 6309,
348
+ "self": 0.15120609997120482,
349
+ "children": {
350
+ "process_trajectory": {
351
+ "total": 9.888434483030323,
352
+ "count": 6309,
353
+ "self": 9.888434483030323
354
+ },
355
+ "_update_policy": {
356
+ "total": 60.638908638999965,
357
+ "count": 34,
358
+ "self": 34.277911250998386,
359
+ "children": {
360
+ "TorchPPOOptimizer.update": {
361
+ "total": 26.36099738800158,
362
+ "count": 1910,
363
+ "self": 26.36099738800158
364
+ }
365
+ }
366
+ }
367
+ }
368
+ }
369
+ }
370
+ },
371
+ "trainer_threads": {
372
+ "total": 6.000000212225132e-07,
373
+ "count": 1,
374
+ "self": 6.000000212225132e-07
375
+ },
376
+ "TrainerController._save_models": {
377
+ "total": 0.12099590199977683,
378
+ "count": 1,
379
+ "self": 0.0012509999996836996,
380
+ "children": {
381
+ "RLTrainer._checkpoint": {
382
+ "total": 0.11974490200009313,
383
+ "count": 1,
384
+ "self": 0.11974490200009313
385
+ }
386
+ }
387
+ }
388
+ }
389
+ }
390
+ }
391
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Pyramids": {
3
+ "checkpoints": [
4
+ {
5
+ "steps": 100003,
6
+ "file_path": "results/Pyramids Training/Pyramids/Pyramids-100003.onnx",
7
+ "reward": null,
8
+ "creation_time": 1692017912.064484,
9
+ "auxillary_file_paths": [
10
+ "results/Pyramids Training/Pyramids/Pyramids-100003.pt"
11
+ ]
12
+ }
13
+ ],
14
+ "final_checkpoint": {
15
+ "steps": 100003,
16
+ "file_path": "results/Pyramids Training/Pyramids.onnx",
17
+ "reward": null,
18
+ "creation_time": 1692017912.064484,
19
+ "auxillary_file_paths": [
20
+ "results/Pyramids Training/Pyramids/Pyramids-100003.pt"
21
+ ]
22
+ }
23
+ },
24
+ "metadata": {
25
+ "stats_format_version": "0.3.0",
26
+ "mlagents_version": "0.31.0.dev0",
27
+ "torch_version": "1.11.0+cu102"
28
+ }
29
+ }