Robotics
LeRobot
Safetensors
pi0
K-vr commited on
Commit
8e47ff7
·
verified ·
1 Parent(s): bfbd215

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +179 -0
  2. config.json +116 -0
  3. model.safetensors +3 -0
  4. train_config.json +273 -0
README.md ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: lerobot/pi0_base
3
+ datasets: K-vr/cube_stack2
4
+ library_name: lerobot
5
+ license: apache-2.0
6
+ model_name: pi0
7
+ pipeline_tag: robotics
8
+ tags:
9
+ - robotics
10
+ - pi0
11
+ - lerobot
12
+ ---
13
+
14
+ # Model Card for pi0
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+ [π₀ (Pi0)](https://www.physicalintelligence.company/blog/pi0) is a general-purpose robot foundation model from Physical Intelligence: a generalist Vision-Language-Action policy that understands visual inputs, interprets natural language instructions, and controls a variety of different robots across diverse tasks. The LeRobot implementation is adapted from their open-source OpenPI repository.
20
+
21
+
22
+
23
+ <p align="center">
24
+ <img src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/lerobot/lerobot-pi0%20(1).png" alt="pi0 architecture" width="85%"/>
25
+ </p>
26
+
27
+
28
+ <!-- A short demo is worth more than any description! Record a GIF/video of the policy
29
+ running on your robot, upload it to this repo, and embed it here:
30
+ <p align="center">
31
+ <img src="https://huggingface.co/<hf_user>/<policy_repo_id>/resolve/main/demo.gif" width="60%"/>
32
+ </p>
33
+ -->
34
+
35
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
36
+
37
+ Learn how to train and run it in the [LeRobot pi0 guide](https://huggingface.co/docs/lerobot/main/en/pi0), or browse the [full documentation](https://huggingface.co/docs/lerobot/index).
38
+
39
+
40
+ ---
41
+
42
+ ## Model Details
43
+
44
+ - **License:** apache-2.0
45
+ - **Fine-tuned from:** [lerobot/pi0_base](https://huggingface.co/lerobot/pi0_base)
46
+ - **Robot type:** `bi_so_follower_7dof`
47
+ - **Cameras:** `left_cam_left`, `left_cam_scene`, `right_cam_right`, `right_cam_scene_realsense`
48
+
49
+
50
+ ## Inputs & Outputs
51
+
52
+ The policy consumes these observation features and produces these action features.
53
+
54
+ **Inputs**
55
+
56
+ | Feature | Type | Shape |
57
+ | --- | --- | --- |
58
+ | `observation.images.base_0_rgb` | VISUAL | `(3, 224, 224)` |
59
+ | `observation.images.left_wrist_0_rgb` | VISUAL | `(3, 224, 224)` |
60
+ | `observation.images.right_wrist_0_rgb` | VISUAL | `(3, 224, 224)` |
61
+ | `observation.state` | STATE | `(32,)` |
62
+
63
+ **Outputs**
64
+
65
+ | Feature | Type | Shape |
66
+ | --- | --- | --- |
67
+ | `action` | ACTION | `(14,)` |
68
+
69
+
70
+ ## Training Data Verification
71
+
72
+ | Check | Value |
73
+ | --- | --- |
74
+ | Dataset repository | [K-vr/cube_stack2](https://huggingface.co/datasets/K-vr/cube_stack2) |
75
+ | Resolved training root | `/workspace/datasets/lerobot/cube_stack2` |
76
+ | Repo/root folder-name check | ✅ Match (`cube_stack2`) |
77
+ | Dataset size | 60 episodes, 33599 frames at 30 FPS |
78
+ | Episodes selected | all |
79
+ | Task(s) | "Stack the three cubes with the 40 mm cube on the bottom, the 30 mm cube in the middle, and the 20 mm cube on top." |
80
+
81
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=K-vr/cube_stack2">
82
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
83
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
84
+ </a>
85
+
86
+
87
+ ## Training Configuration
88
+
89
+ | Setting | Value |
90
+ | --- | --- |
91
+ | Training steps | 4000 |
92
+ | Batch size | 24 |
93
+ | Action representation | absolute |
94
+ | Sample weighting | none |
95
+
96
+ | Image augmentation | disabled |
97
+ | Optimizer | adamw |
98
+ | Learning rate | 2.5e-05 |
99
+ | Seed | 1000 |
100
+ | LeRobot version | 0.6.1 |
101
+
102
+ ---
103
+
104
+ ## How to Get Started with the Model
105
+
106
+ New to LeRobot? These guides cover the full workflow:
107
+
108
+ - **[Install LeRobot](https://huggingface.co/docs/lerobot/main/en/installation)** — set up the `lerobot` package.
109
+ - **[Hardware setup](https://huggingface.co/docs/lerobot/main/en/hardware_guide)** — assemble, wire, and calibrate your robot and cameras.
110
+ - **[Record data & train a policy](https://huggingface.co/docs/lerobot/en/il_robots)** — the end-to-end imitation-learning walkthrough.
111
+ - **[CLI cheat-sheet](https://huggingface.co/docs/lerobot/main/en/cheat-sheet)** — quick reference for the `lerobot-*` commands.
112
+
113
+ The short version to run and train this policy:
114
+
115
+ ### Run the policy on your robot
116
+
117
+ ```bash
118
+ lerobot-rollout \
119
+ --strategy.type=base \
120
+ --robot.type=bi_so_follower_7dof \
121
+ --robot.port=<your_robot_port> \
122
+ --robot.cameras="{ <camera_1>: {type: opencv, index_or_path: <index_or_path>, width: 640, height: 480, fps: 30}, <camera_2>: {type: opencv, index_or_path: <index_or_path>, width: 640, height: 480, fps: 30}}" \
123
+ --policy.path=K-vr/cube_stack2_Pi0_absolute \
124
+ --task="Stack the three cubes with the 40 mm cube on the bottom, the 30 mm cube in the middle, and the 20 mm cube on top." \
125
+ --duration=60
126
+ ```
127
+
128
+ Replace the remaining `<...>` placeholders with your own values: `--robot.port` and the camera names/indices are specific to your machine, and the camera names must match the observation keys this policy was trained on.
129
+
130
+ When `--strategy.type=base` is used the script doesn't record the episodes. Skipping duration will make the policy run indefinitely. For more information look at [rollout documentation](https://huggingface.co/docs/lerobot/main/en/inference).
131
+
132
+ ### Train your own policy
133
+
134
+ This policy type is usually fine-tuned from the pretrained base model [lerobot/pi0_base](https://huggingface.co/lerobot/pi0_base):
135
+
136
+ ```bash
137
+ lerobot-train \
138
+ --dataset.repo_id=${HF_USER}/<dataset> \
139
+ --policy.path=lerobot/pi0_base \
140
+ --output_dir=outputs/train/<policy_repo_id> \
141
+ --job_name=lerobot_training \
142
+ --policy.device=cuda \
143
+ --policy.repo_id=${HF_USER}/<policy_repo_id> \
144
+ --wandb.enable=true
145
+ ```
146
+
147
+ _Writes checkpoints to `outputs/train/<policy_repo_id>/checkpoints/`._
148
+
149
+ ---
150
+
151
+ ## Evaluation
152
+
153
+ <!-- Report real-robot results here: run the policy several times per task and count the
154
+ successes. Delete the "No evaluation results" line and fill in this table instead:
155
+
156
+ | Task | Trials | Successes | Success rate |
157
+ | ---- | ------ | --------- | ------------ |
158
+ | pick the lego brick | 10 | 8 | 80% |
159
+
160
+ Also worth noting: anything that affects difficulty (new object positions, lighting,
161
+ distractors, a different robot of the same type, ...).
162
+ -->
163
+
164
+ _No evaluation results have been provided for this policy yet._
165
+
166
+ ---
167
+
168
+ ## Citation
169
+
170
+ If you use this policy, please cite the method linked in the description above, along with LeRobot:
171
+
172
+ ```bibtex
173
+ @misc{cadene2024lerobot,
174
+ author = {Cadene, Remi and Alibert, Simon and Soare, Alexander and Gallouedec, Quentin and Zouitine, Adil and Palma, Steven and Kooijmans, Pepijn and Aractingi, Michel and Shukor, Mustafa and Aubakirova, Dana and Russi, Martino and Capuano, Francesco and Pascal, Caroline and Choghari, Jade and Moss, Jess and Wolf, Thomas},
175
+ title = {LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch},
176
+ howpublished = "\url{https://github.com/huggingface/lerobot}",
177
+ year = {2024}
178
+ }
179
+ ```
config.json ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "pi0",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.images.base_0_rgb": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 224,
10
+ 224
11
+ ]
12
+ },
13
+ "observation.images.left_wrist_0_rgb": {
14
+ "type": "VISUAL",
15
+ "shape": [
16
+ 3,
17
+ 224,
18
+ 224
19
+ ]
20
+ },
21
+ "observation.images.right_wrist_0_rgb": {
22
+ "type": "VISUAL",
23
+ "shape": [
24
+ 3,
25
+ 224,
26
+ 224
27
+ ]
28
+ },
29
+ "observation.state": {
30
+ "type": "STATE",
31
+ "shape": [
32
+ 32
33
+ ]
34
+ }
35
+ },
36
+ "output_features": {
37
+ "action": {
38
+ "type": "ACTION",
39
+ "shape": [
40
+ 14
41
+ ]
42
+ }
43
+ },
44
+ "device": "cuda",
45
+ "use_amp": false,
46
+ "use_peft": false,
47
+ "push_to_hub": true,
48
+ "repo_id": "K-vr/cube_stack2_Pi0_absolute",
49
+ "private": true,
50
+ "tags": null,
51
+ "license": null,
52
+ "pretrained_path": "lerobot/pi0_base",
53
+ "pretrained_revision": null,
54
+ "paligemma_variant": "gemma_2b",
55
+ "action_expert_variant": "gemma_300m",
56
+ "dtype": "bfloat16",
57
+ "chunk_size": 50,
58
+ "n_action_steps": 50,
59
+ "max_state_dim": 32,
60
+ "max_action_dim": 32,
61
+ "num_inference_steps": 10,
62
+ "time_sampling_beta_alpha": 1.5,
63
+ "time_sampling_beta_beta": 1.0,
64
+ "time_sampling_scale": 0.999,
65
+ "time_sampling_offset": 0.001,
66
+ "min_period": 0.004,
67
+ "max_period": 4.0,
68
+ "use_relative_actions": false,
69
+ "relative_exclude_joints": [
70
+ "gripper"
71
+ ],
72
+ "action_feature_names": [
73
+ "left_shoulder_pan.pos",
74
+ "left_shoulder_lift.pos",
75
+ "left_elbow_flex.pos",
76
+ "left_forearm_roll.pos",
77
+ "left_wrist_flex.pos",
78
+ "left_wrist_roll.pos",
79
+ "left_gripper.pos",
80
+ "right_shoulder_pan.pos",
81
+ "right_shoulder_lift.pos",
82
+ "right_elbow_flex.pos",
83
+ "right_forearm_roll.pos",
84
+ "right_wrist_flex.pos",
85
+ "right_wrist_roll.pos",
86
+ "right_gripper.pos"
87
+ ],
88
+ "rtc_config": null,
89
+ "image_resolution": [
90
+ 224,
91
+ 224
92
+ ],
93
+ "empty_cameras": 0,
94
+ "normalization_mapping": {
95
+ "VISUAL": "IDENTITY",
96
+ "STATE": "MEAN_STD",
97
+ "ACTION": "MEAN_STD"
98
+ },
99
+ "gradient_checkpointing": true,
100
+ "compile_model": true,
101
+ "compile_mode": "max-autotune",
102
+ "freeze_vision_encoder": false,
103
+ "train_expert_only": true,
104
+ "optimizer_lr": 2.5e-05,
105
+ "optimizer_betas": [
106
+ 0.9,
107
+ 0.95
108
+ ],
109
+ "optimizer_eps": 1e-08,
110
+ "optimizer_weight_decay": 0.01,
111
+ "optimizer_grad_clip_norm": 1.0,
112
+ "scheduler_warmup_steps": 1000,
113
+ "scheduler_decay_steps": 30000,
114
+ "scheduler_decay_lr": 2.5e-06,
115
+ "tokenizer_max_length": 48
116
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02e3550651c37b918add3adad21245890eec33e84a9a945546430d05affcd8f7
3
+ size 8892502944
train_config.json ADDED
@@ -0,0 +1,273 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "K-vr/cube_stack2",
4
+ "root": "/workspace/datasets/lerobot/cube_stack2",
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": false,
8
+ "max_num_transforms": 3,
9
+ "random_order": false,
10
+ "tfs": {
11
+ "brightness": {
12
+ "weight": 1.0,
13
+ "type": "ColorJitter",
14
+ "kwargs": {
15
+ "brightness": [
16
+ 0.8,
17
+ 1.2
18
+ ]
19
+ }
20
+ },
21
+ "contrast": {
22
+ "weight": 1.0,
23
+ "type": "ColorJitter",
24
+ "kwargs": {
25
+ "contrast": [
26
+ 0.8,
27
+ 1.2
28
+ ]
29
+ }
30
+ },
31
+ "saturation": {
32
+ "weight": 1.0,
33
+ "type": "ColorJitter",
34
+ "kwargs": {
35
+ "saturation": [
36
+ 0.5,
37
+ 1.5
38
+ ]
39
+ }
40
+ },
41
+ "hue": {
42
+ "weight": 1.0,
43
+ "type": "ColorJitter",
44
+ "kwargs": {
45
+ "hue": [
46
+ -0.05,
47
+ 0.05
48
+ ]
49
+ }
50
+ },
51
+ "sharpness": {
52
+ "weight": 1.0,
53
+ "type": "SharpnessJitter",
54
+ "kwargs": {
55
+ "sharpness": [
56
+ 0.5,
57
+ 1.5
58
+ ]
59
+ }
60
+ },
61
+ "affine": {
62
+ "weight": 1.0,
63
+ "type": "RandomAffine",
64
+ "kwargs": {
65
+ "degrees": [
66
+ -5.0,
67
+ 5.0
68
+ ],
69
+ "translate": [
70
+ 0.05,
71
+ 0.05
72
+ ]
73
+ }
74
+ }
75
+ }
76
+ },
77
+ "revision": null,
78
+ "use_imagenet_stats": true,
79
+ "video_backend": "torchcodec",
80
+ "return_uint8": false,
81
+ "depth_output_unit": "mm",
82
+ "streaming": false,
83
+ "eval_split": 0.0
84
+ },
85
+ "env": null,
86
+ "policy": {
87
+ "type": "pi0",
88
+ "n_obs_steps": 1,
89
+ "input_features": {
90
+ "observation.images.base_0_rgb": {
91
+ "type": "VISUAL",
92
+ "shape": [
93
+ 3,
94
+ 224,
95
+ 224
96
+ ]
97
+ },
98
+ "observation.images.left_wrist_0_rgb": {
99
+ "type": "VISUAL",
100
+ "shape": [
101
+ 3,
102
+ 224,
103
+ 224
104
+ ]
105
+ },
106
+ "observation.images.right_wrist_0_rgb": {
107
+ "type": "VISUAL",
108
+ "shape": [
109
+ 3,
110
+ 224,
111
+ 224
112
+ ]
113
+ },
114
+ "observation.state": {
115
+ "type": "STATE",
116
+ "shape": [
117
+ 32
118
+ ]
119
+ }
120
+ },
121
+ "output_features": {
122
+ "action": {
123
+ "type": "ACTION",
124
+ "shape": [
125
+ 14
126
+ ]
127
+ }
128
+ },
129
+ "device": "cuda",
130
+ "use_amp": false,
131
+ "use_peft": false,
132
+ "push_to_hub": true,
133
+ "repo_id": "K-vr/cube_stack2_Pi0_absolute",
134
+ "private": true,
135
+ "tags": null,
136
+ "license": null,
137
+ "pretrained_path": "lerobot/pi0_base",
138
+ "pretrained_revision": null,
139
+ "paligemma_variant": "gemma_2b",
140
+ "action_expert_variant": "gemma_300m",
141
+ "dtype": "bfloat16",
142
+ "chunk_size": 50,
143
+ "n_action_steps": 50,
144
+ "max_state_dim": 32,
145
+ "max_action_dim": 32,
146
+ "num_inference_steps": 10,
147
+ "time_sampling_beta_alpha": 1.5,
148
+ "time_sampling_beta_beta": 1.0,
149
+ "time_sampling_scale": 0.999,
150
+ "time_sampling_offset": 0.001,
151
+ "min_period": 0.004,
152
+ "max_period": 4.0,
153
+ "use_relative_actions": false,
154
+ "relative_exclude_joints": [
155
+ "gripper"
156
+ ],
157
+ "action_feature_names": [
158
+ "left_shoulder_pan.pos",
159
+ "left_shoulder_lift.pos",
160
+ "left_elbow_flex.pos",
161
+ "left_forearm_roll.pos",
162
+ "left_wrist_flex.pos",
163
+ "left_wrist_roll.pos",
164
+ "left_gripper.pos",
165
+ "right_shoulder_pan.pos",
166
+ "right_shoulder_lift.pos",
167
+ "right_elbow_flex.pos",
168
+ "right_forearm_roll.pos",
169
+ "right_wrist_flex.pos",
170
+ "right_wrist_roll.pos",
171
+ "right_gripper.pos"
172
+ ],
173
+ "rtc_config": null,
174
+ "image_resolution": [
175
+ 224,
176
+ 224
177
+ ],
178
+ "empty_cameras": 0,
179
+ "normalization_mapping": {
180
+ "VISUAL": "IDENTITY",
181
+ "STATE": "MEAN_STD",
182
+ "ACTION": "MEAN_STD"
183
+ },
184
+ "gradient_checkpointing": true,
185
+ "compile_model": true,
186
+ "compile_mode": "max-autotune",
187
+ "freeze_vision_encoder": false,
188
+ "train_expert_only": true,
189
+ "optimizer_lr": 2.5e-05,
190
+ "optimizer_betas": [
191
+ 0.9,
192
+ 0.95
193
+ ],
194
+ "optimizer_eps": 1e-08,
195
+ "optimizer_weight_decay": 0.01,
196
+ "optimizer_grad_clip_norm": 1.0,
197
+ "scheduler_warmup_steps": 1000,
198
+ "scheduler_decay_steps": 30000,
199
+ "scheduler_decay_lr": 2.5e-06,
200
+ "tokenizer_max_length": 48
201
+ },
202
+ "reward_model": null,
203
+ "output_dir": "/workspace/output/train/cube_stack2_Pi0_absolute",
204
+ "job_name": "cube_stack2_Pi0_absolute",
205
+ "resume": false,
206
+ "seed": 1000,
207
+ "cudnn_deterministic": false,
208
+ "num_workers": 4,
209
+ "batch_size": 24,
210
+ "prefetch_factor": 4,
211
+ "persistent_workers": true,
212
+ "steps": 4000,
213
+ "env_eval_freq": 20000,
214
+ "log_freq": 100,
215
+ "eval_steps": 0,
216
+ "max_eval_samples": 0,
217
+ "tolerance_s": 0.0001,
218
+ "save_checkpoint": true,
219
+ "save_freq": 1000,
220
+ "use_policy_training_preset": true,
221
+ "optimizer": {
222
+ "type": "adamw",
223
+ "lr": 2.5e-05,
224
+ "weight_decay": 0.01,
225
+ "grad_clip_norm": 1.0,
226
+ "betas": [
227
+ 0.9,
228
+ 0.95
229
+ ],
230
+ "eps": 1e-08
231
+ },
232
+ "scheduler": {
233
+ "type": "cosine_decay_with_warmup",
234
+ "num_warmup_steps": 1000,
235
+ "num_decay_steps": 30000,
236
+ "peak_lr": 2.5e-05,
237
+ "decay_lr": 2.5e-06
238
+ },
239
+ "eval": {
240
+ "n_episodes": 50,
241
+ "batch_size": 16,
242
+ "use_async_envs": true,
243
+ "recording": false,
244
+ "recording_repo_id": null,
245
+ "recording_private": true
246
+ },
247
+ "wandb": {
248
+ "enable": false,
249
+ "disable_artifact": false,
250
+ "project": "lerobot",
251
+ "entity": null,
252
+ "notes": null,
253
+ "run_id": null,
254
+ "mode": null,
255
+ "add_tags": true
256
+ },
257
+ "peft": null,
258
+ "job": {
259
+ "target": null,
260
+ "image": "huggingface/lerobot-gpu:latest",
261
+ "timeout": "2d",
262
+ "detach": false,
263
+ "tags": []
264
+ },
265
+ "save_checkpoint_to_hub": false,
266
+ "sample_weighting": null,
267
+ "rename_map": {
268
+ "observation.images.left_cam_scene": "observation.images.base_0_rgb",
269
+ "observation.images.left_cam_left": "observation.images.left_wrist_0_rgb",
270
+ "observation.images.right_cam_right": "observation.images.right_wrist_0_rgb"
271
+ },
272
+ "checkpoint_path": null
273
+ }