Kennyp-Chen commited on
Commit
32e7062
·
verified ·
1 Parent(s): 88de151

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ tags:
4
+ - reinforcement-learning
5
+ - robot
6
+ - g1
7
+ - bfmzero
8
+ ---
9
+
10
+ # BFMZero - 23DoF Checkpoint (Final)
11
+
12
+ Trained checkpoint for BFMZero (FBcprAuxAgent / FBcprAuxModel) with **23 degrees of freedom**.
13
+
14
+ ## Training Status
15
+
16
+ - **Steps**: 384,000,000
17
+ - **Config**: Residual MLP with z_dim=256, hidden_dim=2048, 4 hidden layers
18
+ - **Device**: CUDA
19
+
20
+ ## Files
21
+
22
+ | File | Description |
23
+ |------|-------------|
24
+ | `model_384000000.safetensors` | Model weights (SafeTensors format) |
25
+ | `optimizers_384000000.pth` | Optimizer states |
26
+ | `config.json` | Model architecture configuration |
27
+ | `config.yaml` | Full training configuration |
28
+ | `init_kwargs.json` | Initialization parameters |
29
+ | `train_status.json` | Training step counter |
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from huggingface_hub import hf_hub_download
35
+ import torch
36
+
37
+ # Download model weights
38
+ model_path = hf_hub_download(
39
+ repo_id="Kennyp-Chen/bfmzero-23dof",
40
+ filename="model_384000000.safetensors"
41
+ )
42
+ ```
config.json ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "FBcprAuxAgent",
3
+ "model": {
4
+ "name": "FBcprAuxModel",
5
+ "device": "cuda",
6
+ "archi": {
7
+ "name": "FBcprAuxModelArchiConfig",
8
+ "z_dim": 256,
9
+ "norm_z": true,
10
+ "f": {
11
+ "name": "ForwardArchi",
12
+ "hidden_dim": 2048,
13
+ "model": "residual",
14
+ "hidden_layers": 4,
15
+ "embedding_layers": 2,
16
+ "num_parallel": 2,
17
+ "ensemble_mode": "batch",
18
+ "input_filter": {
19
+ "name": "DictInputFilterConfig",
20
+ "key": [
21
+ "state",
22
+ "privileged_state",
23
+ "last_action",
24
+ "history_actor"
25
+ ]
26
+ }
27
+ },
28
+ "b": {
29
+ "name": "BackwardArchi",
30
+ "hidden_dim": 256,
31
+ "hidden_layers": 1,
32
+ "norm": true,
33
+ "input_filter": {
34
+ "name": "DictInputFilterConfig",
35
+ "key": [
36
+ "state",
37
+ "privileged_state"
38
+ ]
39
+ }
40
+ },
41
+ "actor": {
42
+ "name": "actor",
43
+ "model": "residual",
44
+ "hidden_dim": 2048,
45
+ "hidden_layers": 4,
46
+ "embedding_layers": 2,
47
+ "input_filter": {
48
+ "name": "DictInputFilterConfig",
49
+ "key": [
50
+ "state",
51
+ "last_action",
52
+ "history_actor"
53
+ ]
54
+ }
55
+ },
56
+ "critic": {
57
+ "name": "ForwardArchi",
58
+ "hidden_dim": 2048,
59
+ "model": "residual",
60
+ "hidden_layers": 4,
61
+ "embedding_layers": 2,
62
+ "num_parallel": 2,
63
+ "ensemble_mode": "batch",
64
+ "input_filter": {
65
+ "name": "DictInputFilterConfig",
66
+ "key": [
67
+ "state",
68
+ "privileged_state",
69
+ "last_action",
70
+ "history_actor"
71
+ ]
72
+ }
73
+ },
74
+ "discriminator": {
75
+ "name": "DiscriminatorArchi",
76
+ "hidden_dim": 1024,
77
+ "hidden_layers": 2,
78
+ "input_filter": {
79
+ "name": "DictInputFilterConfig",
80
+ "key": [
81
+ "state",
82
+ "privileged_state"
83
+ ]
84
+ }
85
+ },
86
+ "aux_critic": {
87
+ "name": "ForwardArchi",
88
+ "hidden_dim": 2048,
89
+ "model": "residual",
90
+ "hidden_layers": 4,
91
+ "embedding_layers": 2,
92
+ "num_parallel": 2,
93
+ "ensemble_mode": "batch",
94
+ "input_filter": {
95
+ "name": "DictInputFilterConfig",
96
+ "key": [
97
+ "state",
98
+ "privileged_state",
99
+ "last_action",
100
+ "history_actor"
101
+ ]
102
+ }
103
+ }
104
+ },
105
+ "obs_normalizer": {
106
+ "name": "ObsNormalizerConfig",
107
+ "normalizers": {
108
+ "state": {
109
+ "name": "BatchNormNormalizerConfig",
110
+ "momentum": 0.01
111
+ },
112
+ "privileged_state": {
113
+ "name": "BatchNormNormalizerConfig",
114
+ "momentum": 0.01
115
+ },
116
+ "last_action": {
117
+ "name": "BatchNormNormalizerConfig",
118
+ "momentum": 0.01
119
+ },
120
+ "history_actor": {
121
+ "name": "BatchNormNormalizerConfig",
122
+ "momentum": 0.01
123
+ }
124
+ },
125
+ "allow_mismatching_keys": true
126
+ },
127
+ "inference_batch_size": 256000,
128
+ "seq_length": 8,
129
+ "actor_std": 0.05,
130
+ "amp": false,
131
+ "norm_aux_reward": {
132
+ "name": "RewardNormalizer",
133
+ "translate": false,
134
+ "scale": true
135
+ }
136
+ },
137
+ "train": {
138
+ "name": "FBcprAuxAgentTrainConfig",
139
+ "lr_f": 0.0003,
140
+ "lr_b": 1e-05,
141
+ "lr_actor": 0.0003,
142
+ "weight_decay": 0.0,
143
+ "clip_grad_norm": 0.0,
144
+ "fb_target_tau": 0.01,
145
+ "ortho_coef": 100.0,
146
+ "train_goal_ratio": 0.2,
147
+ "fb_pessimism_penalty": 0.0,
148
+ "actor_pessimism_penalty": 0.5,
149
+ "stddev_clip": 0.3,
150
+ "q_loss_coef": 0.0,
151
+ "batch_size": 512,
152
+ "discount": 0.98,
153
+ "use_mix_rollout": true,
154
+ "update_z_every_step": 100,
155
+ "z_buffer_size": 8192,
156
+ "rollout_expert_trajectories": true,
157
+ "rollout_expert_trajectories_length": 250,
158
+ "rollout_expert_trajectories_percentage": 0.5,
159
+ "lr_discriminator": 1e-05,
160
+ "lr_critic": 0.0003,
161
+ "critic_target_tau": 0.005,
162
+ "critic_pessimism_penalty": 0.5,
163
+ "reg_coeff": 0.05,
164
+ "scale_reg": true,
165
+ "expert_asm_ratio": 0.6,
166
+ "relabel_ratio": 0.8,
167
+ "grad_penalty_discriminator": 10.0,
168
+ "weight_decay_discriminator": 0.0,
169
+ "lr_aux_critic": 0.0003,
170
+ "reg_coeff_aux": 0.02,
171
+ "aux_critic_pessimism_penalty": 0.5
172
+ },
173
+ "aux_rewards": [
174
+ "penalty_torques",
175
+ "penalty_action_rate",
176
+ "limits_dof_pos",
177
+ "limits_torque",
178
+ "penalty_undesired_contact",
179
+ "penalty_feet_ori",
180
+ "penalty_ankle_roll",
181
+ "penalty_slippage"
182
+ ],
183
+ "aux_rewards_scaling": {
184
+ "penalty_action_rate": -0.1,
185
+ "penalty_feet_ori": -0.4,
186
+ "penalty_ankle_roll": -4.0,
187
+ "limits_dof_pos": -10.0,
188
+ "penalty_slippage": -2.0,
189
+ "penalty_undesired_contact": -1.0,
190
+ "penalty_torques": 0.0,
191
+ "limits_torque": 0.0
192
+ },
193
+ "cudagraphs": false,
194
+ "compile": false
195
+ }
config.yaml ADDED
@@ -0,0 +1,1039 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ env:
2
+ _target_: humanoidverse.envs.legged_robot_motions.legged_robot_motions.LeggedRobotMotions
3
+ _recursive_: false
4
+ config:
5
+ experiment_name: ${experiment_name}
6
+ num_envs: ${num_envs}
7
+ headless: true
8
+ simulator: ${simulator}
9
+ save_rendering_dir: null
10
+ ckpt_dir: null
11
+ robot: ${robot}
12
+ domain_rand: ${domain_rand}
13
+ rewards: ${rewards}
14
+ terrain: ${terrain}
15
+ obs: ${obs}
16
+ env_spacing: 5.0
17
+ max_episode_length_s: 10
18
+ normalization:
19
+ clip_actions: 100.0
20
+ clip_observations: 100.0
21
+ termination:
22
+ terminate_when_close_to_dof_pos_limit: false
23
+ terminate_when_close_to_dof_vel_limit: false
24
+ terminate_when_close_to_torque_limit: false
25
+ terminate_by_contact: false
26
+ terminate_by_gravity: false
27
+ terminate_by_low_height: false
28
+ terminate_when_motion_end: false
29
+ terminate_when_motion_far: false
30
+ termination_scales:
31
+ termination_close_to_dof_pos_limit: 0.98
32
+ termination_close_to_dof_vel_limit: 0.98
33
+ termination_close_to_torque_limit: 0.98
34
+ termination_min_base_height: 0.2
35
+ termination_gravity_x: 0.8
36
+ termination_gravity_y: 0.8
37
+ termination_motion_far_threshold: 1.5
38
+ termination_probality:
39
+ terminate_when_close_to_dof_pos_limit: 0.25
40
+ terminate_when_close_to_dof_vel_limit: 0.25
41
+ terminate_when_close_to_torque_limit: 0.25
42
+ termination_curriculum:
43
+ terminate_when_motion_far_curriculum: false
44
+ terminate_when_motion_far_initial_threshold: 1.5
45
+ terminate_when_motion_far_threshold_max: 0.5
46
+ terminate_when_motion_far_threshold_min: 0.25
47
+ terminate_when_motion_far_curriculum_degree: 2.5e-05
48
+ terminate_when_motion_far_curriculum_level_down_threshold: 40
49
+ terminate_when_motion_far_curriculum_level_up_threshold: 42
50
+ resample_motion_when_training: false
51
+ resample_time_interval_s: 150
52
+ noise_to_initial_level: 0
53
+ init_noise_scale:
54
+ dof_pos: 0.1
55
+ dof_vel: 0.15
56
+ root_pos: 0.05
57
+ root_rot: 10
58
+ root_vel: 0.01
59
+ root_ang_vel: 0.01
60
+ use_teleop_control: false
61
+ enforce_randomize_motion_start_eval: false
62
+ lie_down_init: true
63
+ lie_down_init_prob: 0.3
64
+ log_task_name: legged_motions
65
+ eval_overrides:
66
+ env:
67
+ config:
68
+ max_episode_length_s: 100000
69
+ simulator:
70
+ _target_: humanoidverse.simulator.isaacsim.isaacsim.IsaacSim
71
+ _recursive_: false
72
+ config:
73
+ name: isaacsim
74
+ terrain: ${terrain}
75
+ plane:
76
+ static_friction: 1.0
77
+ dynamic_friction: 1.0
78
+ restitution: 0.0
79
+ sim:
80
+ fps: 200
81
+ control_decimation: 4
82
+ substeps: 1
83
+ physx:
84
+ num_threads: 10
85
+ solver_type: 1
86
+ num_position_iterations: 4
87
+ num_velocity_iterations: 0
88
+ contact_offset: 0.01
89
+ rest_offset: 0.0
90
+ bounce_threshold_velocity: 0.5
91
+ max_depenetration_velocity: 1.0
92
+ default_buffer_size_multiplier: 5
93
+ contact_collection: 2
94
+ render_mode: human
95
+ render_interval: 4
96
+ scene:
97
+ num_envs: ${num_envs}
98
+ env_spacing: ${env.config.env_spacing}
99
+ replicate_physics: true
100
+ domain_rand:
101
+ push_robots: true
102
+ push_interval_s:
103
+ - 1
104
+ - 3
105
+ max_push_vel_xy: 0.5
106
+ max_push_ang_vel: 0.5
107
+ push_robot_recovery_time: 2.0
108
+ randomize_base_com: true
109
+ base_com_range:
110
+ x:
111
+ - -0.02
112
+ - 0.02
113
+ 'y':
114
+ - -0.02
115
+ - 0.02
116
+ z:
117
+ - -0.02
118
+ - 0.02
119
+ randomize_link_mass: true
120
+ link_mass_range:
121
+ - 0.95
122
+ - 1.05
123
+ randomize_pd_gain: false
124
+ kp_range:
125
+ - 0.75
126
+ - 1.25
127
+ kd_range:
128
+ - 0.75
129
+ - 1.25
130
+ randomize_friction: true
131
+ friction_range:
132
+ - 0.5
133
+ - 1.25
134
+ randomize_base_mass: false
135
+ randomize_torque_rfi: false
136
+ rfi_lim: 0.1
137
+ randomize_rfi_lim: false
138
+ rfi_lim_range:
139
+ - 0.5
140
+ - 1.5
141
+ randomize_ctrl_delay: false
142
+ ctrl_delay_step_range:
143
+ - 0
144
+ - 1
145
+ randomize_default_dof_pos: true
146
+ default_dof_pos_noise_range:
147
+ - -0.02
148
+ - 0.02
149
+ rewards:
150
+ set_reward: Zhengyi
151
+ set_reward_date: 20250320
152
+ only_positive_rewards: false
153
+ reward_scales:
154
+ penalty_torques: -1.0e-06
155
+ penalty_undesired_contact: -1
156
+ penalty_action_rate: -0.5
157
+ penalty_ankle_roll: -0.5
158
+ penalty_feet_ori: -0.1
159
+ feet_heading_alignment: -0.1
160
+ penalty_slippage: -1.0
161
+ limits_dof_pos: -10.0
162
+ limits_dof_vel: -5.0
163
+ limits_torque: -5.0
164
+ reward_penalty_curriculum: true
165
+ reward_initial_penalty_scale: 0.1
166
+ reward_min_penalty_scale: 0.0
167
+ reward_max_penalty_scale: 1.0
168
+ reward_penalty_level_down_threshold: 40
169
+ reward_penalty_level_up_threshold: 42
170
+ reward_penalty_degree: 1.0e-05
171
+ num_compute_average_epl: 10000
172
+ reward_limit:
173
+ soft_dof_pos_limit: 0.95
174
+ soft_dof_vel_limit: 0.95
175
+ soft_torque_limit: 0.95
176
+ reward_limits_curriculum:
177
+ soft_dof_pos_curriculum: false
178
+ soft_dof_pos_initial_limit: 1.15
179
+ soft_dof_pos_max_limit: 1.15
180
+ soft_dof_pos_min_limit: 0.95
181
+ soft_dof_pos_curriculum_degree: 2.5e-07
182
+ soft_dof_pos_curriculum_level_down_threshold: 40
183
+ soft_dof_pos_curriculum_level_up_threshold: 42
184
+ soft_dof_vel_curriculum: false
185
+ soft_dof_vel_initial_limit: 1.15
186
+ soft_dof_vel_max_limit: 1.25
187
+ soft_dof_vel_min_limit: 0.95
188
+ soft_dof_vel_curriculum_degree: 2.5e-07
189
+ soft_dof_vel_curriculum_level_down_threshold: 40
190
+ soft_dof_vel_curriculum_level_up_threshold: 42
191
+ soft_torque_curriculum: false
192
+ soft_torque_initial_limit: 1.15
193
+ soft_torque_max_limit: 1.25
194
+ soft_torque_min_limit: 0.85
195
+ soft_torque_curriculum_degree: 2.5e-07
196
+ soft_torque_curriculum_level_down_threshold: 40
197
+ soft_torque_curriculum_level_up_threshold: 42
198
+ reward_penalty_reward_names:
199
+ - penalty_torques
200
+ - penalty_action_rate
201
+ - limits_dof_pos
202
+ - limits_torque
203
+ - penalty_slippage
204
+ - penalty_undesired_contact
205
+ - penalty_ankle_roll
206
+ - penalty_feet_ori
207
+ robot:
208
+ dof_obs_size: 23
209
+ number_of_actions: ???
210
+ self_obs_max_coords: ???
211
+ num_bodies: 24
212
+ algo_obs_dim_dict: ???
213
+ key_bodies:
214
+ - left_ankle_roll_link
215
+ - right_ankle_roll_link
216
+ contact_bodies:
217
+ - left_ankle_roll_link
218
+ - right_ankle_roll_link
219
+ foot_name: ankle_roll_link
220
+ init_state:
221
+ pos:
222
+ - 0.0
223
+ - 0.0
224
+ - 0.8
225
+ rot:
226
+ - 0.0
227
+ - 0.0
228
+ - 0.0
229
+ - 1.0
230
+ lin_vel:
231
+ - 0.0
232
+ - 0.0
233
+ - 0.0
234
+ ang_vel:
235
+ - 0.0
236
+ - 0.0
237
+ - 0.0
238
+ default_joint_angles:
239
+ left_hip_pitch_joint: -0.1
240
+ left_hip_roll_joint: 0.0
241
+ left_hip_yaw_joint: 0.0
242
+ left_knee_joint: 0.3
243
+ left_ankle_pitch_joint: -0.2
244
+ left_ankle_roll_joint: 0.0
245
+ right_hip_pitch_joint: -0.1
246
+ right_hip_roll_joint: 0.0
247
+ right_hip_yaw_joint: 0.0
248
+ right_knee_joint: 0.3
249
+ right_ankle_pitch_joint: -0.2
250
+ right_ankle_roll_joint: 0.0
251
+ waist_yaw_joint: 0.0
252
+ left_shoulder_pitch_joint: 0.0
253
+ left_shoulder_roll_joint: 0.0
254
+ left_shoulder_yaw_joint: 0.0
255
+ left_elbow_joint: 0.0
256
+ left_wrist_roll_joint: 0.0
257
+ right_shoulder_pitch_joint: 0.0
258
+ right_shoulder_roll_joint: 0.0
259
+ right_shoulder_yaw_joint: 0.0
260
+ right_elbow_joint: 0.0
261
+ right_wrist_roll_joint: 0.0
262
+ contact_pairs_multiplier: 16
263
+ num_key_bodies: ${len:${robot.key_bodies}}
264
+ mimic_small_marker_bodies: null
265
+ randomize_link_body_names:
266
+ - pelvis
267
+ - left_hip_yaw_link
268
+ - left_hip_roll_link
269
+ - left_hip_pitch_link
270
+ - left_knee_link
271
+ - right_hip_yaw_link
272
+ - right_hip_roll_link
273
+ - right_hip_pitch_link
274
+ - right_knee_link
275
+ control:
276
+ control_type: P
277
+ stiffness:
278
+ hip_yaw: 40.17924
279
+ hip_roll: 99.09843
280
+ hip_pitch: 99.09843
281
+ knee: 99.09843
282
+ ankle_pitch: 28.50125
283
+ ankle_roll: 28.50125
284
+ waist_yaw: 300
285
+ shoulder_pitch: 14.25062
286
+ shoulder_roll: 14.25062
287
+ shoulder_yaw: 14.25062
288
+ elbow: 14.25062
289
+ wrist_roll: 14.25062
290
+ damping:
291
+ hip_yaw: 2.55789
292
+ hip_roll: 6.3088
293
+ hip_pitch: 6.3088
294
+ knee: 6.3088
295
+ ankle_pitch: 1.81445
296
+ ankle_roll: 1.81445
297
+ waist_yaw: 5
298
+ shoulder_pitch: 0.90722
299
+ shoulder_roll: 0.90722
300
+ shoulder_yaw: 0.90722
301
+ elbow: 0.90722
302
+ wrist_roll: 0.90722
303
+ action_scale: 0.25
304
+ isaac_pd_scale: false
305
+ clamp_actions: 1.0
306
+ clip_torques: true
307
+ integral:
308
+ hip_yaw: 0.0
309
+ hip_roll: 0.0
310
+ hip_pitch: 0.0
311
+ knee: 0.0
312
+ ankle_pitch: 0.0
313
+ ankle_roll: 0.0
314
+ waist_yaw: 0.0
315
+ shoulder_pitch: 2.0
316
+ shoulder_roll: 2.0
317
+ shoulder_yaw: 2.0
318
+ elbow: 2.0
319
+ wrist_roll: 1.5
320
+ action_clip_value: 5.0
321
+ action_rescale: true
322
+ normalize_action: true
323
+ normalize_action_from: 1.0
324
+ normalize_action_to: 5.0
325
+ asset:
326
+ collapse_fixed_joints: true
327
+ replace_cylinder_with_capsule: true
328
+ flip_visual_attachments: false
329
+ armature: 0.001
330
+ thickness: 0.01
331
+ max_angular_velocity: 1000.0
332
+ max_linear_velocity: 1000.0
333
+ density: 0.001
334
+ angular_damping: 0.0
335
+ linear_damping: 0.0
336
+ disable_gravity: null
337
+ fix_base_link: false
338
+ default_dof_drive_mode: 3
339
+ robot_type: g1_23dof
340
+ urdf_file: g1/${robot.asset.robot_type}.urdf
341
+ usd_file: /home/hero/Projects/Robotics/RL/Unitree_Assets/g1_23dof/usd/g1_23dof_rev_1_0/g1_23dof_rev_1_0.usd
342
+ xml_file: g1/${robot.asset.robot_type}.xml
343
+ asset_root: humanoidverse/data/robots
344
+ self_collisions: 0
345
+ filter_ints: null
346
+ actions_dim: 23
347
+ lower_body_actions_dim: 12
348
+ upper_body_actions_dim: 11
349
+ body_keys:
350
+ - lower_body
351
+ - upper_body
352
+ policy_obs_dim: -1
353
+ critic_obs_dim: -1
354
+ num_feet: 2
355
+ right_foot_name: right_ankle_roll_link
356
+ left_foot_name: left_ankle_roll_link
357
+ knee_name: knee_link
358
+ has_torso: true
359
+ torso_name: torso_link
360
+ has_upper_body_dof: true
361
+ dof_names:
362
+ - left_hip_pitch_joint
363
+ - left_hip_roll_joint
364
+ - left_hip_yaw_joint
365
+ - left_knee_joint
366
+ - left_ankle_pitch_joint
367
+ - left_ankle_roll_joint
368
+ - right_hip_pitch_joint
369
+ - right_hip_roll_joint
370
+ - right_hip_yaw_joint
371
+ - right_knee_joint
372
+ - right_ankle_pitch_joint
373
+ - right_ankle_roll_joint
374
+ - waist_yaw_joint
375
+ - left_shoulder_pitch_joint
376
+ - left_shoulder_roll_joint
377
+ - left_shoulder_yaw_joint
378
+ - left_elbow_joint
379
+ - left_wrist_roll_joint
380
+ - right_shoulder_pitch_joint
381
+ - right_shoulder_roll_joint
382
+ - right_shoulder_yaw_joint
383
+ - right_elbow_joint
384
+ - right_wrist_roll_joint
385
+ upper_dof_names:
386
+ - waist_yaw_joint
387
+ - left_shoulder_pitch_joint
388
+ - left_shoulder_roll_joint
389
+ - left_shoulder_yaw_joint
390
+ - left_elbow_joint
391
+ - left_wrist_roll_joint
392
+ - right_shoulder_pitch_joint
393
+ - right_shoulder_roll_joint
394
+ - right_shoulder_yaw_joint
395
+ - right_elbow_joint
396
+ - right_wrist_roll_joint
397
+ upper_left_arm_dof_names:
398
+ - left_shoulder_pitch_joint
399
+ - left_shoulder_roll_joint
400
+ - left_shoulder_yaw_joint
401
+ - left_elbow_joint
402
+ - left_wrist_roll_joint
403
+ upper_right_arm_dof_names:
404
+ - right_shoulder_pitch_joint
405
+ - right_shoulder_roll_joint
406
+ - right_shoulder_yaw_joint
407
+ - right_elbow_joint
408
+ - right_wrist_roll_joint
409
+ lower_dof_names:
410
+ - left_hip_pitch_joint
411
+ - left_hip_roll_joint
412
+ - left_hip_yaw_joint
413
+ - left_knee_joint
414
+ - left_ankle_pitch_joint
415
+ - left_ankle_roll_joint
416
+ - right_hip_pitch_joint
417
+ - right_hip_roll_joint
418
+ - right_hip_yaw_joint
419
+ - right_knee_joint
420
+ - right_ankle_pitch_joint
421
+ - right_ankle_roll_joint
422
+ - waist_yaw_joint
423
+ waist_dof_names:
424
+ - waist_yaw_joint
425
+ waist_yaw_dof_name: waist_yaw_joint
426
+ arm_dof_names:
427
+ - left_shoulder_pitch_joint
428
+ - left_shoulder_roll_joint
429
+ - left_shoulder_yaw_joint
430
+ - left_elbow_joint
431
+ - left_wrist_roll_joint
432
+ - right_shoulder_pitch_joint
433
+ - right_shoulder_roll_joint
434
+ - right_shoulder_yaw_joint
435
+ - right_elbow_joint
436
+ - right_wrist_roll_joint
437
+ left_arm_dof_names:
438
+ - left_shoulder_pitch_joint
439
+ - left_shoulder_roll_joint
440
+ - left_shoulder_yaw_joint
441
+ - left_elbow_joint
442
+ - left_wrist_roll_joint
443
+ right_arm_dof_names:
444
+ - right_shoulder_pitch_joint
445
+ - right_shoulder_roll_joint
446
+ - right_shoulder_yaw_joint
447
+ - right_elbow_joint
448
+ - right_wrist_roll_joint
449
+ left_ankle_dof_names:
450
+ - left_ankle_pitch_joint
451
+ - left_ankle_roll_joint
452
+ right_ankle_dof_names:
453
+ - right_ankle_pitch_joint
454
+ - right_ankle_roll_joint
455
+ knee_dof_names:
456
+ - left_knee_joint
457
+ - right_knee_joint
458
+ dof_pos_lower_limit_list:
459
+ - -2.5307
460
+ - -0.5236
461
+ - -2.7576
462
+ - -0.087267
463
+ - -0.87267
464
+ - -0.2618
465
+ - -2.5307
466
+ - -2.9671
467
+ - -2.7576
468
+ - -0.087267
469
+ - -0.87267
470
+ - -0.2618
471
+ - -2.618
472
+ - -3.0892
473
+ - -1.5882
474
+ - -2.618
475
+ - -1.0472
476
+ - -1.972222054
477
+ - -3.0892
478
+ - -2.2515
479
+ - -2.618
480
+ - -1.0472
481
+ - -1.972222054
482
+ dof_pos_upper_limit_list:
483
+ - 2.8798
484
+ - 2.9671
485
+ - 2.7576
486
+ - 2.8798
487
+ - 0.5236
488
+ - 0.2618
489
+ - 2.8798
490
+ - 0.5236
491
+ - 2.7576
492
+ - 2.8798
493
+ - 0.5236
494
+ - 0.2618
495
+ - 2.618
496
+ - 2.6704
497
+ - 2.2515
498
+ - 2.618
499
+ - 2.0944
500
+ - 1.972222054
501
+ - 2.6704
502
+ - 1.5882
503
+ - 2.618
504
+ - 2.0944
505
+ - 1.972222054
506
+ dof_vel_limit_list:
507
+ - 32.0
508
+ - 32.0
509
+ - 32.0
510
+ - 20.0
511
+ - 37.0
512
+ - 37.0
513
+ - 32.0
514
+ - 32.0
515
+ - 32.0
516
+ - 20.0
517
+ - 37.0
518
+ - 37.0
519
+ - 32.0
520
+ - 37.0
521
+ - 37.0
522
+ - 37.0
523
+ - 37.0
524
+ - 37.0
525
+ - 37.0
526
+ - 37.0
527
+ - 37.0
528
+ - 37.0
529
+ - 37.0
530
+ dof_effort_limit_list:
531
+ - 139.0
532
+ - 139.0
533
+ - 88.0
534
+ - 139.0
535
+ - 50.0
536
+ - 50.0
537
+ - 139.0
538
+ - 139.0
539
+ - 88.0
540
+ - 139.0
541
+ - 50.0
542
+ - 50.0
543
+ - 88.0
544
+ - 25.0
545
+ - 25.0
546
+ - 25.0
547
+ - 25.0
548
+ - 25.0
549
+ - 25.0
550
+ - 25.0
551
+ - 25.0
552
+ - 25.0
553
+ - 25.0
554
+ dof_effort_limit_scale: 0.8
555
+ dof_armature_list:
556
+ - 0.025101925
557
+ - 0.025101925
558
+ - 0.01017752004
559
+ - 0.025101925
560
+ - 0.00721945
561
+ - 0.00721945
562
+ - 0.025101925
563
+ - 0.025101925
564
+ - 0.01017752004
565
+ - 0.025101925
566
+ - 0.00721945
567
+ - 0.00721945
568
+ - 0.01017752004
569
+ - 0.003609725
570
+ - 0.003609725
571
+ - 0.003609725
572
+ - 0.003609725
573
+ - 0.003609725
574
+ - 0.003609725
575
+ - 0.003609725
576
+ - 0.003609725
577
+ - 0.003609725
578
+ - 0.003609725
579
+ dof_joint_friction_list:
580
+ - 0.03
581
+ - 0.03
582
+ - 0.03
583
+ - 0.03
584
+ - 0.03
585
+ - 0.03
586
+ - 0.03
587
+ - 0.03
588
+ - 0.03
589
+ - 0.03
590
+ - 0.03
591
+ - 0.03
592
+ - 0.03
593
+ - 0.03
594
+ - 0.03
595
+ - 0.03
596
+ - 0.03
597
+ - 0.03
598
+ - 0.03
599
+ - 0.03
600
+ - 0.03
601
+ - 0.03
602
+ - 0.03
603
+ body_names:
604
+ - pelvis
605
+ - left_hip_pitch_link
606
+ - left_hip_roll_link
607
+ - left_hip_yaw_link
608
+ - left_knee_link
609
+ - left_ankle_pitch_link
610
+ - left_ankle_roll_link
611
+ - right_hip_pitch_link
612
+ - right_hip_roll_link
613
+ - right_hip_yaw_link
614
+ - right_knee_link
615
+ - right_ankle_pitch_link
616
+ - right_ankle_roll_link
617
+ - torso_link
618
+ - left_shoulder_pitch_link
619
+ - left_shoulder_roll_link
620
+ - left_shoulder_yaw_link
621
+ - left_elbow_link
622
+ - left_wrist_roll_rubber_hand
623
+ - right_shoulder_pitch_link
624
+ - right_shoulder_roll_link
625
+ - right_shoulder_yaw_link
626
+ - right_elbow_link
627
+ - right_wrist_roll_rubber_hand
628
+ terminate_after_contacts_on:
629
+ - pelvis
630
+ - shoulder
631
+ - hip
632
+ penalize_contacts_on:
633
+ - pelvis
634
+ - shoulder
635
+ - hip
636
+ motion:
637
+ motion_file: data/lafan_tail.pkl
638
+ asset:
639
+ assetRoot: humanoidverse/data/robots/g1/
640
+ assetFileName: g1_23dof.xml
641
+ urdfFileName: g1_23dof.urdf
642
+ humanoid_type: g1_23dof
643
+ bias_offset: false
644
+ has_self_collision: true
645
+ has_mesh: false
646
+ has_jt_limit: false
647
+ has_dof_subset: true
648
+ has_upright_start: true
649
+ has_smpl_pd_offset: false
650
+ remove_toe: false
651
+ motion_sym_loss: false
652
+ sym_loss_coef: 1
653
+ big_ankle: true
654
+ has_shape_obs: false
655
+ has_shape_obs_disc: false
656
+ has_shape_variation: false
657
+ uniform_sample: false
658
+ motion_fps_scale: 1.0
659
+ standardize_motion_length: true
660
+ standardize_motion_length_value: 10
661
+ reverse_motion: false
662
+ masterfoot: false
663
+ freeze_toe: false
664
+ freeze_hand: false
665
+ box_body: true
666
+ real_weight: true
667
+ real_weight_porpotion_capsules: true
668
+ real_weight_porpotion_boxes: true
669
+ body_names:
670
+ - pelvis
671
+ - left_hip_pitch_link
672
+ - left_hip_roll_link
673
+ - left_hip_yaw_link
674
+ - left_knee_link
675
+ - left_ankle_pitch_link
676
+ - left_ankle_roll_link
677
+ - right_hip_pitch_link
678
+ - right_hip_roll_link
679
+ - right_hip_yaw_link
680
+ - right_knee_link
681
+ - right_ankle_pitch_link
682
+ - right_ankle_roll_link
683
+ - torso_link
684
+ - left_shoulder_pitch_link
685
+ - left_shoulder_roll_link
686
+ - left_shoulder_yaw_link
687
+ - left_elbow_link
688
+ - left_wrist_roll_rubber_hand
689
+ - right_shoulder_pitch_link
690
+ - right_shoulder_roll_link
691
+ - right_shoulder_yaw_link
692
+ - right_elbow_link
693
+ - right_wrist_roll_rubber_hand
694
+ limb_weight_group:
695
+ - - left_hip_pitch_link
696
+ - left_hip_roll_link
697
+ - left_hip_yaw_link
698
+ - left_knee_link
699
+ - left_ankle_pitch_link
700
+ - left_ankle_roll_link
701
+ - - right_hip_pitch_link
702
+ - right_hip_roll_link
703
+ - right_hip_yaw_link
704
+ - right_knee_link
705
+ - right_ankle_pitch_link
706
+ - right_ankle_roll_link
707
+ - - pelvis
708
+ - torso_link
709
+ - - left_shoulder_pitch_link
710
+ - left_shoulder_roll_link
711
+ - left_shoulder_yaw_link
712
+ - left_elbow_link
713
+ - left_wrist_roll_rubber_hand
714
+ - - right_shoulder_pitch_link
715
+ - right_shoulder_roll_link
716
+ - right_shoulder_yaw_link
717
+ - right_elbow_link
718
+ - right_wrist_roll_rubber_hand
719
+ dof_names:
720
+ - left_hip_pitch_link
721
+ - left_hip_roll_link
722
+ - left_hip_yaw_link
723
+ - left_knee_link
724
+ - left_ankle_pitch_link
725
+ - left_ankle_roll_link
726
+ - right_hip_pitch_link
727
+ - right_hip_roll_link
728
+ - right_hip_yaw_link
729
+ - right_knee_link
730
+ - right_ankle_pitch_link
731
+ - right_ankle_roll_link
732
+ - torso_link
733
+ - left_shoulder_pitch_link
734
+ - left_shoulder_roll_link
735
+ - left_shoulder_yaw_link
736
+ - left_elbow_link
737
+ - left_wrist_roll_rubber_hand
738
+ - right_shoulder_pitch_link
739
+ - right_shoulder_roll_link
740
+ - right_shoulder_yaw_link
741
+ - right_elbow_link
742
+ - right_wrist_roll_rubber_hand
743
+ right_foot_name: r_foot_roll
744
+ left_foot_name: l_foot_roll
745
+ nums_extend_bodies: 1
746
+ extend_config:
747
+ - joint_name: head_link
748
+ parent_name: torso_link
749
+ pos:
750
+ - 0.0
751
+ - 0.0
752
+ - 0.35
753
+ rot:
754
+ - 1.0
755
+ - 0.0
756
+ - 0.0
757
+ - 0.0
758
+ motion_tracking_link:
759
+ - head_link
760
+ lower_body_link:
761
+ - pelvis
762
+ - left_hip_pitch_link
763
+ - left_hip_roll_link
764
+ - left_hip_yaw_link
765
+ - left_knee_link
766
+ - left_ankle_pitch_link
767
+ - left_ankle_roll_link
768
+ - right_hip_pitch_link
769
+ - right_hip_roll_link
770
+ - right_hip_yaw_link
771
+ - right_knee_link
772
+ - right_ankle_pitch_link
773
+ - right_ankle_roll_link
774
+ - torso_link
775
+ upper_body_link:
776
+ - left_shoulder_pitch_link
777
+ - left_shoulder_roll_link
778
+ - left_shoulder_yaw_link
779
+ - left_elbow_link
780
+ - left_wrist_roll_rubber_hand
781
+ - right_shoulder_pitch_link
782
+ - right_shoulder_roll_link
783
+ - right_shoulder_yaw_link
784
+ - right_elbow_link
785
+ - right_wrist_roll_rubber_hand
786
+ - head_link
787
+ pelvis_link: pelvis
788
+ base_link: torso_link
789
+ hips_link:
790
+ - left_hip_pitch_link
791
+ - left_hip_roll_link
792
+ - left_hip_yaw_link
793
+ - right_hip_pitch_link
794
+ - right_hip_roll_link
795
+ - right_hip_yaw_link
796
+ joint_matches:
797
+ - - pelvis
798
+ - Pelvis
799
+ - - left_hip_pitch_link
800
+ - L_Hip
801
+ - - left_knee_link
802
+ - L_Knee
803
+ - - left_ankle_roll_link
804
+ - L_Ankle
805
+ - - right_hip_pitch_link
806
+ - R_Hip
807
+ - - right_knee_link
808
+ - R_Knee
809
+ - - right_ankle_roll_link
810
+ - R_Ankle
811
+ - - left_shoulder_roll_link
812
+ - L_Shoulder
813
+ - - left_elbow_link
814
+ - L_Elbow
815
+ - - left_hand_link
816
+ - L_Hand
817
+ - - right_shoulder_roll_link
818
+ - R_Shoulder
819
+ - - right_elbow_link
820
+ - R_Elbow
821
+ - - right_hand_link
822
+ - R_Hand
823
+ - - head_link
824
+ - Head
825
+ smpl_pose_modifier:
826
+ - Pelvis: '[np.pi/2, 0, np.pi/2]'
827
+ - L_Shoulder: '[0, 0, -np.pi/2]'
828
+ - R_Shoulder: '[0, 0, np.pi/2]'
829
+ - L_Elbow: '[0, -np.pi/2, 0]'
830
+ - R_Elbow: '[0, np.pi/2, 0]'
831
+ visualization:
832
+ customize_color: true
833
+ marker_joint_colors:
834
+ - - 0.929
835
+ - 0.867
836
+ - 0.437
837
+ - - 0.929
838
+ - 0.867
839
+ - 0.437
840
+ - - 0.929
841
+ - 0.867
842
+ - 0.437
843
+ - - 0.929
844
+ - 0.867
845
+ - 0.437
846
+ - - 0.929
847
+ - 0.867
848
+ - 0.437
849
+ - - 0.929
850
+ - 0.867
851
+ - 0.437
852
+ - - 0.929
853
+ - 0.867
854
+ - 0.437
855
+ - - 0.929
856
+ - 0.867
857
+ - 0.437
858
+ - - 0.929
859
+ - 0.867
860
+ - 0.437
861
+ - - 0.929
862
+ - 0.867
863
+ - 0.437
864
+ - - 0.929
865
+ - 0.867
866
+ - 0.437
867
+ - - 0.929
868
+ - 0.867
869
+ - 0.437
870
+ - - 0.929
871
+ - 0.867
872
+ - 0.437
873
+ - - 0.929
874
+ - 0.867
875
+ - 0.437
876
+ - - 0.929
877
+ - 0.867
878
+ - 0.437
879
+ - - 0.929
880
+ - 0.867
881
+ - 0.437
882
+ - - 0.929
883
+ - 0.867
884
+ - 0.437
885
+ - - 0.929
886
+ - 0.867
887
+ - 0.437
888
+ - - 0.929
889
+ - 0.867
890
+ - 0.437
891
+ - - 0.929
892
+ - 0.867
893
+ - 0.437
894
+ - - 0.929
895
+ - 0.867
896
+ - 0.437
897
+ - - 0.929
898
+ - 0.867
899
+ - 0.437
900
+ - - 0.929
901
+ - 0.867
902
+ - 0.437
903
+ - - 0.929
904
+ - 0.867
905
+ - 0.437
906
+ - - 0.929
907
+ - 0.867
908
+ - 0.437
909
+ - - 0.929
910
+ - 0.867
911
+ - 0.437
912
+ - - 0.929
913
+ - 0.867
914
+ - 0.437
915
+ - - 0.929
916
+ - 0.867
917
+ - 0.437
918
+ - - 0.929
919
+ - 0.867
920
+ - 0.437
921
+ - - 0.929
922
+ - 0.867
923
+ - 0.437
924
+ - - 0.929
925
+ - 0.867
926
+ - 0.437
927
+ - - 0.929
928
+ - 0.867
929
+ - 0.437
930
+ - - 0
931
+ - 0.351
932
+ - 0.613
933
+ - - 0
934
+ - 0.351
935
+ - 0.613
936
+ - - 0
937
+ - 0.351
938
+ - 0.613
939
+ max_len: 450
940
+ terrain:
941
+ static_friction: 1.0
942
+ dynamic_friction: 1.0
943
+ restitution: 0.0
944
+ mesh_type: plane
945
+ horizontal_scale: 0.1
946
+ vertical_scale: 0.005
947
+ border_size: 40
948
+ curriculum: false
949
+ measure_heights: false
950
+ measured_points_x:
951
+ - 0.0
952
+ measured_points_y:
953
+ - 0.0
954
+ selected: false
955
+ terrain_kwargs: null
956
+ max_init_terrain_level: 9
957
+ terrain_length: 8.0
958
+ terrain_width: 8.0
959
+ num_rows: 10
960
+ num_cols: 20
961
+ terrain_types:
962
+ - flat
963
+ - rough
964
+ - low_obst
965
+ - smooth_slope
966
+ - rough_slope
967
+ terrain_proportions:
968
+ - 0.2
969
+ - 0.6
970
+ - 0.2
971
+ - 0.0
972
+ - 0.0
973
+ slope_treshold: 0.75
974
+ obs:
975
+ use_obs_filter: true
976
+ root_height_obs: true
977
+ obs_dict:
978
+ actor_obs:
979
+ - base_ang_vel
980
+ - projected_gravity
981
+ - dof_pos
982
+ - dof_vel
983
+ - actions
984
+ - history_actor
985
+ - max_local_self
986
+ critic_obs:
987
+ - max_local_self
988
+ obs_auxiliary:
989
+ history_actor:
990
+ base_ang_vel: 4
991
+ projected_gravity: 4
992
+ dof_pos: 4
993
+ dof_vel: 4
994
+ actions: 4
995
+ obs_scales:
996
+ actions: 1.0
997
+ dof_pos: 1.0
998
+ dof_vel: 1.0
999
+ max_local_self: 1.0
1000
+ base_lin_vel: 1.0
1001
+ base_ang_vel: 0.25
1002
+ projected_gravity: 1.0
1003
+ history_actor: 1.0
1004
+ noise_scales:
1005
+ base_lin_vel: 0.0
1006
+ base_ang_vel: 0.2
1007
+ projected_gravity: 0.05
1008
+ dof_pos: 0.01
1009
+ dof_vel: 0.5
1010
+ actions: 0.0
1011
+ max_local_self: 0.0
1012
+ history_actor: 0.0
1013
+ add_noise_currculum: false
1014
+ noise_initial_value: 0.05
1015
+ noise_value_max: 1.0
1016
+ noise_value_min: 1.0e-05
1017
+ soft_dof_pos_curriculum_degree: 1.0e-05
1018
+ soft_dof_pos_curriculum_level_down_threshold: 40
1019
+ soft_dof_pos_curriculum_level_up_threshold: 42
1020
+ obs_dims:
1021
+ - base_lin_vel: 3
1022
+ - base_ang_vel: 3
1023
+ - projected_gravity: 3
1024
+ - dof_pos: ${robot.dof_obs_size}
1025
+ - dof_vel: ${robot.dof_obs_size}
1026
+ - actions: ${robot.dof_obs_size}
1027
+ - max_local_self: ${eval:'(3 + 6 + 3 + 3) * (${robot.num_bodies} + ${robot.motion.nums_extend_bodies})
1028
+ + 1 - 3 - 1'}
1029
+ post_compute_config: {}
1030
+ callbacks:
1031
+ im_eval:
1032
+ _target_: humanoidverse.trl.callbacks.im_eval_callback.ImEvalCallback
1033
+ eval_frequency: 500
1034
+ exp_base: ${hydra:runtime.choices.exp}
1035
+ exp_var: test
1036
+ experiment_name: ${exp_base}_${exp_var}
1037
+ experiment_dir: ${base_dir}/${project_name}/${experiment_name}-${timestamp}
1038
+ num_envs: 50
1039
+ project_name: BFMZero
init_kwargs.json ADDED
@@ -0,0 +1,1548 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "obs_space": {
3
+ "type": "Dict",
4
+ "spaces": {
5
+ "history_actor": {
6
+ "low": [
7
+ -Infinity,
8
+ -Infinity,
9
+ -Infinity,
10
+ -Infinity,
11
+ -Infinity,
12
+ -Infinity,
13
+ -Infinity,
14
+ -Infinity,
15
+ -Infinity,
16
+ -Infinity,
17
+ -Infinity,
18
+ -Infinity,
19
+ -Infinity,
20
+ -Infinity,
21
+ -Infinity,
22
+ -Infinity,
23
+ -Infinity,
24
+ -Infinity,
25
+ -Infinity,
26
+ -Infinity,
27
+ -Infinity,
28
+ -Infinity,
29
+ -Infinity,
30
+ -Infinity,
31
+ -Infinity,
32
+ -Infinity,
33
+ -Infinity,
34
+ -Infinity,
35
+ -Infinity,
36
+ -Infinity,
37
+ -Infinity,
38
+ -Infinity,
39
+ -Infinity,
40
+ -Infinity,
41
+ -Infinity,
42
+ -Infinity,
43
+ -Infinity,
44
+ -Infinity,
45
+ -Infinity,
46
+ -Infinity,
47
+ -Infinity,
48
+ -Infinity,
49
+ -Infinity,
50
+ -Infinity,
51
+ -Infinity,
52
+ -Infinity,
53
+ -Infinity,
54
+ -Infinity,
55
+ -Infinity,
56
+ -Infinity,
57
+ -Infinity,
58
+ -Infinity,
59
+ -Infinity,
60
+ -Infinity,
61
+ -Infinity,
62
+ -Infinity,
63
+ -Infinity,
64
+ -Infinity,
65
+ -Infinity,
66
+ -Infinity,
67
+ -Infinity,
68
+ -Infinity,
69
+ -Infinity,
70
+ -Infinity,
71
+ -Infinity,
72
+ -Infinity,
73
+ -Infinity,
74
+ -Infinity,
75
+ -Infinity,
76
+ -Infinity,
77
+ -Infinity,
78
+ -Infinity,
79
+ -Infinity,
80
+ -Infinity,
81
+ -Infinity,
82
+ -Infinity,
83
+ -Infinity,
84
+ -Infinity,
85
+ -Infinity,
86
+ -Infinity,
87
+ -Infinity,
88
+ -Infinity,
89
+ -Infinity,
90
+ -Infinity,
91
+ -Infinity,
92
+ -Infinity,
93
+ -Infinity,
94
+ -Infinity,
95
+ -Infinity,
96
+ -Infinity,
97
+ -Infinity,
98
+ -Infinity,
99
+ -Infinity,
100
+ -Infinity,
101
+ -Infinity,
102
+ -Infinity,
103
+ -Infinity,
104
+ -Infinity,
105
+ -Infinity,
106
+ -Infinity,
107
+ -Infinity,
108
+ -Infinity,
109
+ -Infinity,
110
+ -Infinity,
111
+ -Infinity,
112
+ -Infinity,
113
+ -Infinity,
114
+ -Infinity,
115
+ -Infinity,
116
+ -Infinity,
117
+ -Infinity,
118
+ -Infinity,
119
+ -Infinity,
120
+ -Infinity,
121
+ -Infinity,
122
+ -Infinity,
123
+ -Infinity,
124
+ -Infinity,
125
+ -Infinity,
126
+ -Infinity,
127
+ -Infinity,
128
+ -Infinity,
129
+ -Infinity,
130
+ -Infinity,
131
+ -Infinity,
132
+ -Infinity,
133
+ -Infinity,
134
+ -Infinity,
135
+ -Infinity,
136
+ -Infinity,
137
+ -Infinity,
138
+ -Infinity,
139
+ -Infinity,
140
+ -Infinity,
141
+ -Infinity,
142
+ -Infinity,
143
+ -Infinity,
144
+ -Infinity,
145
+ -Infinity,
146
+ -Infinity,
147
+ -Infinity,
148
+ -Infinity,
149
+ -Infinity,
150
+ -Infinity,
151
+ -Infinity,
152
+ -Infinity,
153
+ -Infinity,
154
+ -Infinity,
155
+ -Infinity,
156
+ -Infinity,
157
+ -Infinity,
158
+ -Infinity,
159
+ -Infinity,
160
+ -Infinity,
161
+ -Infinity,
162
+ -Infinity,
163
+ -Infinity,
164
+ -Infinity,
165
+ -Infinity,
166
+ -Infinity,
167
+ -Infinity,
168
+ -Infinity,
169
+ -Infinity,
170
+ -Infinity,
171
+ -Infinity,
172
+ -Infinity,
173
+ -Infinity,
174
+ -Infinity,
175
+ -Infinity,
176
+ -Infinity,
177
+ -Infinity,
178
+ -Infinity,
179
+ -Infinity,
180
+ -Infinity,
181
+ -Infinity,
182
+ -Infinity,
183
+ -Infinity,
184
+ -Infinity,
185
+ -Infinity,
186
+ -Infinity,
187
+ -Infinity,
188
+ -Infinity,
189
+ -Infinity,
190
+ -Infinity,
191
+ -Infinity,
192
+ -Infinity,
193
+ -Infinity,
194
+ -Infinity,
195
+ -Infinity,
196
+ -Infinity,
197
+ -Infinity,
198
+ -Infinity,
199
+ -Infinity,
200
+ -Infinity,
201
+ -Infinity,
202
+ -Infinity,
203
+ -Infinity,
204
+ -Infinity,
205
+ -Infinity,
206
+ -Infinity,
207
+ -Infinity,
208
+ -Infinity,
209
+ -Infinity,
210
+ -Infinity,
211
+ -Infinity,
212
+ -Infinity,
213
+ -Infinity,
214
+ -Infinity,
215
+ -Infinity,
216
+ -Infinity,
217
+ -Infinity,
218
+ -Infinity,
219
+ -Infinity,
220
+ -Infinity,
221
+ -Infinity,
222
+ -Infinity,
223
+ -Infinity,
224
+ -Infinity,
225
+ -Infinity,
226
+ -Infinity,
227
+ -Infinity,
228
+ -Infinity,
229
+ -Infinity,
230
+ -Infinity,
231
+ -Infinity,
232
+ -Infinity,
233
+ -Infinity,
234
+ -Infinity,
235
+ -Infinity,
236
+ -Infinity,
237
+ -Infinity,
238
+ -Infinity,
239
+ -Infinity,
240
+ -Infinity,
241
+ -Infinity,
242
+ -Infinity,
243
+ -Infinity,
244
+ -Infinity,
245
+ -Infinity,
246
+ -Infinity,
247
+ -Infinity,
248
+ -Infinity,
249
+ -Infinity,
250
+ -Infinity,
251
+ -Infinity,
252
+ -Infinity,
253
+ -Infinity,
254
+ -Infinity,
255
+ -Infinity,
256
+ -Infinity,
257
+ -Infinity,
258
+ -Infinity,
259
+ -Infinity,
260
+ -Infinity,
261
+ -Infinity,
262
+ -Infinity,
263
+ -Infinity,
264
+ -Infinity,
265
+ -Infinity,
266
+ -Infinity,
267
+ -Infinity,
268
+ -Infinity,
269
+ -Infinity,
270
+ -Infinity,
271
+ -Infinity,
272
+ -Infinity,
273
+ -Infinity,
274
+ -Infinity,
275
+ -Infinity,
276
+ -Infinity,
277
+ -Infinity,
278
+ -Infinity,
279
+ -Infinity,
280
+ -Infinity,
281
+ -Infinity,
282
+ -Infinity,
283
+ -Infinity,
284
+ -Infinity,
285
+ -Infinity,
286
+ -Infinity,
287
+ -Infinity,
288
+ -Infinity,
289
+ -Infinity,
290
+ -Infinity,
291
+ -Infinity,
292
+ -Infinity,
293
+ -Infinity,
294
+ -Infinity,
295
+ -Infinity,
296
+ -Infinity,
297
+ -Infinity,
298
+ -Infinity,
299
+ -Infinity,
300
+ -Infinity,
301
+ -Infinity,
302
+ -Infinity,
303
+ -Infinity,
304
+ -Infinity,
305
+ -Infinity,
306
+ -Infinity
307
+ ],
308
+ "high": [
309
+ Infinity,
310
+ Infinity,
311
+ Infinity,
312
+ Infinity,
313
+ Infinity,
314
+ Infinity,
315
+ Infinity,
316
+ Infinity,
317
+ Infinity,
318
+ Infinity,
319
+ Infinity,
320
+ Infinity,
321
+ Infinity,
322
+ Infinity,
323
+ Infinity,
324
+ Infinity,
325
+ Infinity,
326
+ Infinity,
327
+ Infinity,
328
+ Infinity,
329
+ Infinity,
330
+ Infinity,
331
+ Infinity,
332
+ Infinity,
333
+ Infinity,
334
+ Infinity,
335
+ Infinity,
336
+ Infinity,
337
+ Infinity,
338
+ Infinity,
339
+ Infinity,
340
+ Infinity,
341
+ Infinity,
342
+ Infinity,
343
+ Infinity,
344
+ Infinity,
345
+ Infinity,
346
+ Infinity,
347
+ Infinity,
348
+ Infinity,
349
+ Infinity,
350
+ Infinity,
351
+ Infinity,
352
+ Infinity,
353
+ Infinity,
354
+ Infinity,
355
+ Infinity,
356
+ Infinity,
357
+ Infinity,
358
+ Infinity,
359
+ Infinity,
360
+ Infinity,
361
+ Infinity,
362
+ Infinity,
363
+ Infinity,
364
+ Infinity,
365
+ Infinity,
366
+ Infinity,
367
+ Infinity,
368
+ Infinity,
369
+ Infinity,
370
+ Infinity,
371
+ Infinity,
372
+ Infinity,
373
+ Infinity,
374
+ Infinity,
375
+ Infinity,
376
+ Infinity,
377
+ Infinity,
378
+ Infinity,
379
+ Infinity,
380
+ Infinity,
381
+ Infinity,
382
+ Infinity,
383
+ Infinity,
384
+ Infinity,
385
+ Infinity,
386
+ Infinity,
387
+ Infinity,
388
+ Infinity,
389
+ Infinity,
390
+ Infinity,
391
+ Infinity,
392
+ Infinity,
393
+ Infinity,
394
+ Infinity,
395
+ Infinity,
396
+ Infinity,
397
+ Infinity,
398
+ Infinity,
399
+ Infinity,
400
+ Infinity,
401
+ Infinity,
402
+ Infinity,
403
+ Infinity,
404
+ Infinity,
405
+ Infinity,
406
+ Infinity,
407
+ Infinity,
408
+ Infinity,
409
+ Infinity,
410
+ Infinity,
411
+ Infinity,
412
+ Infinity,
413
+ Infinity,
414
+ Infinity,
415
+ Infinity,
416
+ Infinity,
417
+ Infinity,
418
+ Infinity,
419
+ Infinity,
420
+ Infinity,
421
+ Infinity,
422
+ Infinity,
423
+ Infinity,
424
+ Infinity,
425
+ Infinity,
426
+ Infinity,
427
+ Infinity,
428
+ Infinity,
429
+ Infinity,
430
+ Infinity,
431
+ Infinity,
432
+ Infinity,
433
+ Infinity,
434
+ Infinity,
435
+ Infinity,
436
+ Infinity,
437
+ Infinity,
438
+ Infinity,
439
+ Infinity,
440
+ Infinity,
441
+ Infinity,
442
+ Infinity,
443
+ Infinity,
444
+ Infinity,
445
+ Infinity,
446
+ Infinity,
447
+ Infinity,
448
+ Infinity,
449
+ Infinity,
450
+ Infinity,
451
+ Infinity,
452
+ Infinity,
453
+ Infinity,
454
+ Infinity,
455
+ Infinity,
456
+ Infinity,
457
+ Infinity,
458
+ Infinity,
459
+ Infinity,
460
+ Infinity,
461
+ Infinity,
462
+ Infinity,
463
+ Infinity,
464
+ Infinity,
465
+ Infinity,
466
+ Infinity,
467
+ Infinity,
468
+ Infinity,
469
+ Infinity,
470
+ Infinity,
471
+ Infinity,
472
+ Infinity,
473
+ Infinity,
474
+ Infinity,
475
+ Infinity,
476
+ Infinity,
477
+ Infinity,
478
+ Infinity,
479
+ Infinity,
480
+ Infinity,
481
+ Infinity,
482
+ Infinity,
483
+ Infinity,
484
+ Infinity,
485
+ Infinity,
486
+ Infinity,
487
+ Infinity,
488
+ Infinity,
489
+ Infinity,
490
+ Infinity,
491
+ Infinity,
492
+ Infinity,
493
+ Infinity,
494
+ Infinity,
495
+ Infinity,
496
+ Infinity,
497
+ Infinity,
498
+ Infinity,
499
+ Infinity,
500
+ Infinity,
501
+ Infinity,
502
+ Infinity,
503
+ Infinity,
504
+ Infinity,
505
+ Infinity,
506
+ Infinity,
507
+ Infinity,
508
+ Infinity,
509
+ Infinity,
510
+ Infinity,
511
+ Infinity,
512
+ Infinity,
513
+ Infinity,
514
+ Infinity,
515
+ Infinity,
516
+ Infinity,
517
+ Infinity,
518
+ Infinity,
519
+ Infinity,
520
+ Infinity,
521
+ Infinity,
522
+ Infinity,
523
+ Infinity,
524
+ Infinity,
525
+ Infinity,
526
+ Infinity,
527
+ Infinity,
528
+ Infinity,
529
+ Infinity,
530
+ Infinity,
531
+ Infinity,
532
+ Infinity,
533
+ Infinity,
534
+ Infinity,
535
+ Infinity,
536
+ Infinity,
537
+ Infinity,
538
+ Infinity,
539
+ Infinity,
540
+ Infinity,
541
+ Infinity,
542
+ Infinity,
543
+ Infinity,
544
+ Infinity,
545
+ Infinity,
546
+ Infinity,
547
+ Infinity,
548
+ Infinity,
549
+ Infinity,
550
+ Infinity,
551
+ Infinity,
552
+ Infinity,
553
+ Infinity,
554
+ Infinity,
555
+ Infinity,
556
+ Infinity,
557
+ Infinity,
558
+ Infinity,
559
+ Infinity,
560
+ Infinity,
561
+ Infinity,
562
+ Infinity,
563
+ Infinity,
564
+ Infinity,
565
+ Infinity,
566
+ Infinity,
567
+ Infinity,
568
+ Infinity,
569
+ Infinity,
570
+ Infinity,
571
+ Infinity,
572
+ Infinity,
573
+ Infinity,
574
+ Infinity,
575
+ Infinity,
576
+ Infinity,
577
+ Infinity,
578
+ Infinity,
579
+ Infinity,
580
+ Infinity,
581
+ Infinity,
582
+ Infinity,
583
+ Infinity,
584
+ Infinity,
585
+ Infinity,
586
+ Infinity,
587
+ Infinity,
588
+ Infinity,
589
+ Infinity,
590
+ Infinity,
591
+ Infinity,
592
+ Infinity,
593
+ Infinity,
594
+ Infinity,
595
+ Infinity,
596
+ Infinity,
597
+ Infinity,
598
+ Infinity,
599
+ Infinity,
600
+ Infinity,
601
+ Infinity,
602
+ Infinity,
603
+ Infinity,
604
+ Infinity,
605
+ Infinity,
606
+ Infinity,
607
+ Infinity,
608
+ Infinity
609
+ ],
610
+ "shape": [
611
+ 300
612
+ ],
613
+ "dtype": "float32",
614
+ "type": "Box"
615
+ },
616
+ "last_action": {
617
+ "low": [
618
+ -Infinity,
619
+ -Infinity,
620
+ -Infinity,
621
+ -Infinity,
622
+ -Infinity,
623
+ -Infinity,
624
+ -Infinity,
625
+ -Infinity,
626
+ -Infinity,
627
+ -Infinity,
628
+ -Infinity,
629
+ -Infinity,
630
+ -Infinity,
631
+ -Infinity,
632
+ -Infinity,
633
+ -Infinity,
634
+ -Infinity,
635
+ -Infinity,
636
+ -Infinity,
637
+ -Infinity,
638
+ -Infinity,
639
+ -Infinity,
640
+ -Infinity
641
+ ],
642
+ "high": [
643
+ Infinity,
644
+ Infinity,
645
+ Infinity,
646
+ Infinity,
647
+ Infinity,
648
+ Infinity,
649
+ Infinity,
650
+ Infinity,
651
+ Infinity,
652
+ Infinity,
653
+ Infinity,
654
+ Infinity,
655
+ Infinity,
656
+ Infinity,
657
+ Infinity,
658
+ Infinity,
659
+ Infinity,
660
+ Infinity,
661
+ Infinity,
662
+ Infinity,
663
+ Infinity,
664
+ Infinity,
665
+ Infinity
666
+ ],
667
+ "shape": [
668
+ 23
669
+ ],
670
+ "dtype": "float32",
671
+ "type": "Box"
672
+ },
673
+ "privileged_state": {
674
+ "low": [
675
+ -Infinity,
676
+ -Infinity,
677
+ -Infinity,
678
+ -Infinity,
679
+ -Infinity,
680
+ -Infinity,
681
+ -Infinity,
682
+ -Infinity,
683
+ -Infinity,
684
+ -Infinity,
685
+ -Infinity,
686
+ -Infinity,
687
+ -Infinity,
688
+ -Infinity,
689
+ -Infinity,
690
+ -Infinity,
691
+ -Infinity,
692
+ -Infinity,
693
+ -Infinity,
694
+ -Infinity,
695
+ -Infinity,
696
+ -Infinity,
697
+ -Infinity,
698
+ -Infinity,
699
+ -Infinity,
700
+ -Infinity,
701
+ -Infinity,
702
+ -Infinity,
703
+ -Infinity,
704
+ -Infinity,
705
+ -Infinity,
706
+ -Infinity,
707
+ -Infinity,
708
+ -Infinity,
709
+ -Infinity,
710
+ -Infinity,
711
+ -Infinity,
712
+ -Infinity,
713
+ -Infinity,
714
+ -Infinity,
715
+ -Infinity,
716
+ -Infinity,
717
+ -Infinity,
718
+ -Infinity,
719
+ -Infinity,
720
+ -Infinity,
721
+ -Infinity,
722
+ -Infinity,
723
+ -Infinity,
724
+ -Infinity,
725
+ -Infinity,
726
+ -Infinity,
727
+ -Infinity,
728
+ -Infinity,
729
+ -Infinity,
730
+ -Infinity,
731
+ -Infinity,
732
+ -Infinity,
733
+ -Infinity,
734
+ -Infinity,
735
+ -Infinity,
736
+ -Infinity,
737
+ -Infinity,
738
+ -Infinity,
739
+ -Infinity,
740
+ -Infinity,
741
+ -Infinity,
742
+ -Infinity,
743
+ -Infinity,
744
+ -Infinity,
745
+ -Infinity,
746
+ -Infinity,
747
+ -Infinity,
748
+ -Infinity,
749
+ -Infinity,
750
+ -Infinity,
751
+ -Infinity,
752
+ -Infinity,
753
+ -Infinity,
754
+ -Infinity,
755
+ -Infinity,
756
+ -Infinity,
757
+ -Infinity,
758
+ -Infinity,
759
+ -Infinity,
760
+ -Infinity,
761
+ -Infinity,
762
+ -Infinity,
763
+ -Infinity,
764
+ -Infinity,
765
+ -Infinity,
766
+ -Infinity,
767
+ -Infinity,
768
+ -Infinity,
769
+ -Infinity,
770
+ -Infinity,
771
+ -Infinity,
772
+ -Infinity,
773
+ -Infinity,
774
+ -Infinity,
775
+ -Infinity,
776
+ -Infinity,
777
+ -Infinity,
778
+ -Infinity,
779
+ -Infinity,
780
+ -Infinity,
781
+ -Infinity,
782
+ -Infinity,
783
+ -Infinity,
784
+ -Infinity,
785
+ -Infinity,
786
+ -Infinity,
787
+ -Infinity,
788
+ -Infinity,
789
+ -Infinity,
790
+ -Infinity,
791
+ -Infinity,
792
+ -Infinity,
793
+ -Infinity,
794
+ -Infinity,
795
+ -Infinity,
796
+ -Infinity,
797
+ -Infinity,
798
+ -Infinity,
799
+ -Infinity,
800
+ -Infinity,
801
+ -Infinity,
802
+ -Infinity,
803
+ -Infinity,
804
+ -Infinity,
805
+ -Infinity,
806
+ -Infinity,
807
+ -Infinity,
808
+ -Infinity,
809
+ -Infinity,
810
+ -Infinity,
811
+ -Infinity,
812
+ -Infinity,
813
+ -Infinity,
814
+ -Infinity,
815
+ -Infinity,
816
+ -Infinity,
817
+ -Infinity,
818
+ -Infinity,
819
+ -Infinity,
820
+ -Infinity,
821
+ -Infinity,
822
+ -Infinity,
823
+ -Infinity,
824
+ -Infinity,
825
+ -Infinity,
826
+ -Infinity,
827
+ -Infinity,
828
+ -Infinity,
829
+ -Infinity,
830
+ -Infinity,
831
+ -Infinity,
832
+ -Infinity,
833
+ -Infinity,
834
+ -Infinity,
835
+ -Infinity,
836
+ -Infinity,
837
+ -Infinity,
838
+ -Infinity,
839
+ -Infinity,
840
+ -Infinity,
841
+ -Infinity,
842
+ -Infinity,
843
+ -Infinity,
844
+ -Infinity,
845
+ -Infinity,
846
+ -Infinity,
847
+ -Infinity,
848
+ -Infinity,
849
+ -Infinity,
850
+ -Infinity,
851
+ -Infinity,
852
+ -Infinity,
853
+ -Infinity,
854
+ -Infinity,
855
+ -Infinity,
856
+ -Infinity,
857
+ -Infinity,
858
+ -Infinity,
859
+ -Infinity,
860
+ -Infinity,
861
+ -Infinity,
862
+ -Infinity,
863
+ -Infinity,
864
+ -Infinity,
865
+ -Infinity,
866
+ -Infinity,
867
+ -Infinity,
868
+ -Infinity,
869
+ -Infinity,
870
+ -Infinity,
871
+ -Infinity,
872
+ -Infinity,
873
+ -Infinity,
874
+ -Infinity,
875
+ -Infinity,
876
+ -Infinity,
877
+ -Infinity,
878
+ -Infinity,
879
+ -Infinity,
880
+ -Infinity,
881
+ -Infinity,
882
+ -Infinity,
883
+ -Infinity,
884
+ -Infinity,
885
+ -Infinity,
886
+ -Infinity,
887
+ -Infinity,
888
+ -Infinity,
889
+ -Infinity,
890
+ -Infinity,
891
+ -Infinity,
892
+ -Infinity,
893
+ -Infinity,
894
+ -Infinity,
895
+ -Infinity,
896
+ -Infinity,
897
+ -Infinity,
898
+ -Infinity,
899
+ -Infinity,
900
+ -Infinity,
901
+ -Infinity,
902
+ -Infinity,
903
+ -Infinity,
904
+ -Infinity,
905
+ -Infinity,
906
+ -Infinity,
907
+ -Infinity,
908
+ -Infinity,
909
+ -Infinity,
910
+ -Infinity,
911
+ -Infinity,
912
+ -Infinity,
913
+ -Infinity,
914
+ -Infinity,
915
+ -Infinity,
916
+ -Infinity,
917
+ -Infinity,
918
+ -Infinity,
919
+ -Infinity,
920
+ -Infinity,
921
+ -Infinity,
922
+ -Infinity,
923
+ -Infinity,
924
+ -Infinity,
925
+ -Infinity,
926
+ -Infinity,
927
+ -Infinity,
928
+ -Infinity,
929
+ -Infinity,
930
+ -Infinity,
931
+ -Infinity,
932
+ -Infinity,
933
+ -Infinity,
934
+ -Infinity,
935
+ -Infinity,
936
+ -Infinity,
937
+ -Infinity,
938
+ -Infinity,
939
+ -Infinity,
940
+ -Infinity,
941
+ -Infinity,
942
+ -Infinity,
943
+ -Infinity,
944
+ -Infinity,
945
+ -Infinity,
946
+ -Infinity,
947
+ -Infinity,
948
+ -Infinity,
949
+ -Infinity,
950
+ -Infinity,
951
+ -Infinity,
952
+ -Infinity,
953
+ -Infinity,
954
+ -Infinity,
955
+ -Infinity,
956
+ -Infinity,
957
+ -Infinity,
958
+ -Infinity,
959
+ -Infinity,
960
+ -Infinity,
961
+ -Infinity,
962
+ -Infinity,
963
+ -Infinity,
964
+ -Infinity,
965
+ -Infinity,
966
+ -Infinity,
967
+ -Infinity,
968
+ -Infinity,
969
+ -Infinity,
970
+ -Infinity,
971
+ -Infinity,
972
+ -Infinity,
973
+ -Infinity,
974
+ -Infinity,
975
+ -Infinity,
976
+ -Infinity,
977
+ -Infinity,
978
+ -Infinity,
979
+ -Infinity,
980
+ -Infinity,
981
+ -Infinity,
982
+ -Infinity,
983
+ -Infinity,
984
+ -Infinity,
985
+ -Infinity,
986
+ -Infinity,
987
+ -Infinity,
988
+ -Infinity,
989
+ -Infinity,
990
+ -Infinity,
991
+ -Infinity,
992
+ -Infinity,
993
+ -Infinity,
994
+ -Infinity,
995
+ -Infinity,
996
+ -Infinity,
997
+ -Infinity,
998
+ -Infinity,
999
+ -Infinity,
1000
+ -Infinity,
1001
+ -Infinity,
1002
+ -Infinity,
1003
+ -Infinity,
1004
+ -Infinity,
1005
+ -Infinity,
1006
+ -Infinity,
1007
+ -Infinity,
1008
+ -Infinity,
1009
+ -Infinity,
1010
+ -Infinity,
1011
+ -Infinity,
1012
+ -Infinity,
1013
+ -Infinity,
1014
+ -Infinity,
1015
+ -Infinity,
1016
+ -Infinity,
1017
+ -Infinity,
1018
+ -Infinity,
1019
+ -Infinity,
1020
+ -Infinity,
1021
+ -Infinity,
1022
+ -Infinity,
1023
+ -Infinity,
1024
+ -Infinity,
1025
+ -Infinity,
1026
+ -Infinity,
1027
+ -Infinity,
1028
+ -Infinity,
1029
+ -Infinity,
1030
+ -Infinity,
1031
+ -Infinity,
1032
+ -Infinity,
1033
+ -Infinity,
1034
+ -Infinity,
1035
+ -Infinity,
1036
+ -Infinity,
1037
+ -Infinity,
1038
+ -Infinity,
1039
+ -Infinity,
1040
+ -Infinity,
1041
+ -Infinity,
1042
+ -Infinity,
1043
+ -Infinity,
1044
+ -Infinity,
1045
+ -Infinity,
1046
+ -Infinity,
1047
+ -Infinity
1048
+ ],
1049
+ "high": [
1050
+ Infinity,
1051
+ Infinity,
1052
+ Infinity,
1053
+ Infinity,
1054
+ Infinity,
1055
+ Infinity,
1056
+ Infinity,
1057
+ Infinity,
1058
+ Infinity,
1059
+ Infinity,
1060
+ Infinity,
1061
+ Infinity,
1062
+ Infinity,
1063
+ Infinity,
1064
+ Infinity,
1065
+ Infinity,
1066
+ Infinity,
1067
+ Infinity,
1068
+ Infinity,
1069
+ Infinity,
1070
+ Infinity,
1071
+ Infinity,
1072
+ Infinity,
1073
+ Infinity,
1074
+ Infinity,
1075
+ Infinity,
1076
+ Infinity,
1077
+ Infinity,
1078
+ Infinity,
1079
+ Infinity,
1080
+ Infinity,
1081
+ Infinity,
1082
+ Infinity,
1083
+ Infinity,
1084
+ Infinity,
1085
+ Infinity,
1086
+ Infinity,
1087
+ Infinity,
1088
+ Infinity,
1089
+ Infinity,
1090
+ Infinity,
1091
+ Infinity,
1092
+ Infinity,
1093
+ Infinity,
1094
+ Infinity,
1095
+ Infinity,
1096
+ Infinity,
1097
+ Infinity,
1098
+ Infinity,
1099
+ Infinity,
1100
+ Infinity,
1101
+ Infinity,
1102
+ Infinity,
1103
+ Infinity,
1104
+ Infinity,
1105
+ Infinity,
1106
+ Infinity,
1107
+ Infinity,
1108
+ Infinity,
1109
+ Infinity,
1110
+ Infinity,
1111
+ Infinity,
1112
+ Infinity,
1113
+ Infinity,
1114
+ Infinity,
1115
+ Infinity,
1116
+ Infinity,
1117
+ Infinity,
1118
+ Infinity,
1119
+ Infinity,
1120
+ Infinity,
1121
+ Infinity,
1122
+ Infinity,
1123
+ Infinity,
1124
+ Infinity,
1125
+ Infinity,
1126
+ Infinity,
1127
+ Infinity,
1128
+ Infinity,
1129
+ Infinity,
1130
+ Infinity,
1131
+ Infinity,
1132
+ Infinity,
1133
+ Infinity,
1134
+ Infinity,
1135
+ Infinity,
1136
+ Infinity,
1137
+ Infinity,
1138
+ Infinity,
1139
+ Infinity,
1140
+ Infinity,
1141
+ Infinity,
1142
+ Infinity,
1143
+ Infinity,
1144
+ Infinity,
1145
+ Infinity,
1146
+ Infinity,
1147
+ Infinity,
1148
+ Infinity,
1149
+ Infinity,
1150
+ Infinity,
1151
+ Infinity,
1152
+ Infinity,
1153
+ Infinity,
1154
+ Infinity,
1155
+ Infinity,
1156
+ Infinity,
1157
+ Infinity,
1158
+ Infinity,
1159
+ Infinity,
1160
+ Infinity,
1161
+ Infinity,
1162
+ Infinity,
1163
+ Infinity,
1164
+ Infinity,
1165
+ Infinity,
1166
+ Infinity,
1167
+ Infinity,
1168
+ Infinity,
1169
+ Infinity,
1170
+ Infinity,
1171
+ Infinity,
1172
+ Infinity,
1173
+ Infinity,
1174
+ Infinity,
1175
+ Infinity,
1176
+ Infinity,
1177
+ Infinity,
1178
+ Infinity,
1179
+ Infinity,
1180
+ Infinity,
1181
+ Infinity,
1182
+ Infinity,
1183
+ Infinity,
1184
+ Infinity,
1185
+ Infinity,
1186
+ Infinity,
1187
+ Infinity,
1188
+ Infinity,
1189
+ Infinity,
1190
+ Infinity,
1191
+ Infinity,
1192
+ Infinity,
1193
+ Infinity,
1194
+ Infinity,
1195
+ Infinity,
1196
+ Infinity,
1197
+ Infinity,
1198
+ Infinity,
1199
+ Infinity,
1200
+ Infinity,
1201
+ Infinity,
1202
+ Infinity,
1203
+ Infinity,
1204
+ Infinity,
1205
+ Infinity,
1206
+ Infinity,
1207
+ Infinity,
1208
+ Infinity,
1209
+ Infinity,
1210
+ Infinity,
1211
+ Infinity,
1212
+ Infinity,
1213
+ Infinity,
1214
+ Infinity,
1215
+ Infinity,
1216
+ Infinity,
1217
+ Infinity,
1218
+ Infinity,
1219
+ Infinity,
1220
+ Infinity,
1221
+ Infinity,
1222
+ Infinity,
1223
+ Infinity,
1224
+ Infinity,
1225
+ Infinity,
1226
+ Infinity,
1227
+ Infinity,
1228
+ Infinity,
1229
+ Infinity,
1230
+ Infinity,
1231
+ Infinity,
1232
+ Infinity,
1233
+ Infinity,
1234
+ Infinity,
1235
+ Infinity,
1236
+ Infinity,
1237
+ Infinity,
1238
+ Infinity,
1239
+ Infinity,
1240
+ Infinity,
1241
+ Infinity,
1242
+ Infinity,
1243
+ Infinity,
1244
+ Infinity,
1245
+ Infinity,
1246
+ Infinity,
1247
+ Infinity,
1248
+ Infinity,
1249
+ Infinity,
1250
+ Infinity,
1251
+ Infinity,
1252
+ Infinity,
1253
+ Infinity,
1254
+ Infinity,
1255
+ Infinity,
1256
+ Infinity,
1257
+ Infinity,
1258
+ Infinity,
1259
+ Infinity,
1260
+ Infinity,
1261
+ Infinity,
1262
+ Infinity,
1263
+ Infinity,
1264
+ Infinity,
1265
+ Infinity,
1266
+ Infinity,
1267
+ Infinity,
1268
+ Infinity,
1269
+ Infinity,
1270
+ Infinity,
1271
+ Infinity,
1272
+ Infinity,
1273
+ Infinity,
1274
+ Infinity,
1275
+ Infinity,
1276
+ Infinity,
1277
+ Infinity,
1278
+ Infinity,
1279
+ Infinity,
1280
+ Infinity,
1281
+ Infinity,
1282
+ Infinity,
1283
+ Infinity,
1284
+ Infinity,
1285
+ Infinity,
1286
+ Infinity,
1287
+ Infinity,
1288
+ Infinity,
1289
+ Infinity,
1290
+ Infinity,
1291
+ Infinity,
1292
+ Infinity,
1293
+ Infinity,
1294
+ Infinity,
1295
+ Infinity,
1296
+ Infinity,
1297
+ Infinity,
1298
+ Infinity,
1299
+ Infinity,
1300
+ Infinity,
1301
+ Infinity,
1302
+ Infinity,
1303
+ Infinity,
1304
+ Infinity,
1305
+ Infinity,
1306
+ Infinity,
1307
+ Infinity,
1308
+ Infinity,
1309
+ Infinity,
1310
+ Infinity,
1311
+ Infinity,
1312
+ Infinity,
1313
+ Infinity,
1314
+ Infinity,
1315
+ Infinity,
1316
+ Infinity,
1317
+ Infinity,
1318
+ Infinity,
1319
+ Infinity,
1320
+ Infinity,
1321
+ Infinity,
1322
+ Infinity,
1323
+ Infinity,
1324
+ Infinity,
1325
+ Infinity,
1326
+ Infinity,
1327
+ Infinity,
1328
+ Infinity,
1329
+ Infinity,
1330
+ Infinity,
1331
+ Infinity,
1332
+ Infinity,
1333
+ Infinity,
1334
+ Infinity,
1335
+ Infinity,
1336
+ Infinity,
1337
+ Infinity,
1338
+ Infinity,
1339
+ Infinity,
1340
+ Infinity,
1341
+ Infinity,
1342
+ Infinity,
1343
+ Infinity,
1344
+ Infinity,
1345
+ Infinity,
1346
+ Infinity,
1347
+ Infinity,
1348
+ Infinity,
1349
+ Infinity,
1350
+ Infinity,
1351
+ Infinity,
1352
+ Infinity,
1353
+ Infinity,
1354
+ Infinity,
1355
+ Infinity,
1356
+ Infinity,
1357
+ Infinity,
1358
+ Infinity,
1359
+ Infinity,
1360
+ Infinity,
1361
+ Infinity,
1362
+ Infinity,
1363
+ Infinity,
1364
+ Infinity,
1365
+ Infinity,
1366
+ Infinity,
1367
+ Infinity,
1368
+ Infinity,
1369
+ Infinity,
1370
+ Infinity,
1371
+ Infinity,
1372
+ Infinity,
1373
+ Infinity,
1374
+ Infinity,
1375
+ Infinity,
1376
+ Infinity,
1377
+ Infinity,
1378
+ Infinity,
1379
+ Infinity,
1380
+ Infinity,
1381
+ Infinity,
1382
+ Infinity,
1383
+ Infinity,
1384
+ Infinity,
1385
+ Infinity,
1386
+ Infinity,
1387
+ Infinity,
1388
+ Infinity,
1389
+ Infinity,
1390
+ Infinity,
1391
+ Infinity,
1392
+ Infinity,
1393
+ Infinity,
1394
+ Infinity,
1395
+ Infinity,
1396
+ Infinity,
1397
+ Infinity,
1398
+ Infinity,
1399
+ Infinity,
1400
+ Infinity,
1401
+ Infinity,
1402
+ Infinity,
1403
+ Infinity,
1404
+ Infinity,
1405
+ Infinity,
1406
+ Infinity,
1407
+ Infinity,
1408
+ Infinity,
1409
+ Infinity,
1410
+ Infinity,
1411
+ Infinity,
1412
+ Infinity,
1413
+ Infinity,
1414
+ Infinity,
1415
+ Infinity,
1416
+ Infinity,
1417
+ Infinity,
1418
+ Infinity,
1419
+ Infinity,
1420
+ Infinity,
1421
+ Infinity,
1422
+ Infinity
1423
+ ],
1424
+ "shape": [
1425
+ 373
1426
+ ],
1427
+ "dtype": "float32",
1428
+ "type": "Box"
1429
+ },
1430
+ "state": {
1431
+ "low": [
1432
+ -Infinity,
1433
+ -Infinity,
1434
+ -Infinity,
1435
+ -Infinity,
1436
+ -Infinity,
1437
+ -Infinity,
1438
+ -Infinity,
1439
+ -Infinity,
1440
+ -Infinity,
1441
+ -Infinity,
1442
+ -Infinity,
1443
+ -Infinity,
1444
+ -Infinity,
1445
+ -Infinity,
1446
+ -Infinity,
1447
+ -Infinity,
1448
+ -Infinity,
1449
+ -Infinity,
1450
+ -Infinity,
1451
+ -Infinity,
1452
+ -Infinity,
1453
+ -Infinity,
1454
+ -Infinity,
1455
+ -Infinity,
1456
+ -Infinity,
1457
+ -Infinity,
1458
+ -Infinity,
1459
+ -Infinity,
1460
+ -Infinity,
1461
+ -Infinity,
1462
+ -Infinity,
1463
+ -Infinity,
1464
+ -Infinity,
1465
+ -Infinity,
1466
+ -Infinity,
1467
+ -Infinity,
1468
+ -Infinity,
1469
+ -Infinity,
1470
+ -Infinity,
1471
+ -Infinity,
1472
+ -Infinity,
1473
+ -Infinity,
1474
+ -Infinity,
1475
+ -Infinity,
1476
+ -Infinity,
1477
+ -Infinity,
1478
+ -Infinity,
1479
+ -Infinity,
1480
+ -Infinity,
1481
+ -Infinity,
1482
+ -Infinity,
1483
+ -Infinity
1484
+ ],
1485
+ "high": [
1486
+ Infinity,
1487
+ Infinity,
1488
+ Infinity,
1489
+ Infinity,
1490
+ Infinity,
1491
+ Infinity,
1492
+ Infinity,
1493
+ Infinity,
1494
+ Infinity,
1495
+ Infinity,
1496
+ Infinity,
1497
+ Infinity,
1498
+ Infinity,
1499
+ Infinity,
1500
+ Infinity,
1501
+ Infinity,
1502
+ Infinity,
1503
+ Infinity,
1504
+ Infinity,
1505
+ Infinity,
1506
+ Infinity,
1507
+ Infinity,
1508
+ Infinity,
1509
+ Infinity,
1510
+ Infinity,
1511
+ Infinity,
1512
+ Infinity,
1513
+ Infinity,
1514
+ Infinity,
1515
+ Infinity,
1516
+ Infinity,
1517
+ Infinity,
1518
+ Infinity,
1519
+ Infinity,
1520
+ Infinity,
1521
+ Infinity,
1522
+ Infinity,
1523
+ Infinity,
1524
+ Infinity,
1525
+ Infinity,
1526
+ Infinity,
1527
+ Infinity,
1528
+ Infinity,
1529
+ Infinity,
1530
+ Infinity,
1531
+ Infinity,
1532
+ Infinity,
1533
+ Infinity,
1534
+ Infinity,
1535
+ Infinity,
1536
+ Infinity,
1537
+ Infinity
1538
+ ],
1539
+ "shape": [
1540
+ 52
1541
+ ],
1542
+ "dtype": "float32",
1543
+ "type": "Box"
1544
+ }
1545
+ }
1546
+ },
1547
+ "action_dim": 23
1548
+ }
model_384000000.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f03758327c4882834e5a6927805a9ac4876982877cad4096705ee9deef2dbb4
3
+ size 2099252384
optimizers_384000000.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:577b2c067c7db9a59b3f601ad2c8b6d737db3e4a24ac5734f6c7948ae1c8dd9c
3
+ size 2198886299
train_status.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "time": 384000000
3
+ }