Robotics
LeRobot
Safetensors
pi0
fouad1233 commited on
Commit
12c4e84
·
verified ·
1 Parent(s): 64880e5

Upload policy weights, train config and readme

Browse files
Files changed (5) hide show
  1. README.md +172 -0
  2. adapter_config.json +43 -0
  3. adapter_model.safetensors +3 -0
  4. config.json +108 -0
  5. train_config.json +259 -0
README.md ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: lerobot/pi0_base
3
+ datasets: fouad1233/so101_cap_sort
4
+ library_name: lerobot
5
+ license: apache-2.0
6
+ model_name: pi0
7
+ pipeline_tag: robotics
8
+ tags:
9
+ - pi0
10
+ - lerobot
11
+ - robotics
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:** `so_follower`
47
+ - **Cameras:** `base_0_rgb`, `left_wrist_0_rgb`
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 | `(6,)` |
68
+
69
+
70
+ ## Training Dataset
71
+
72
+ - **Repository:** [fouad1233/so101_cap_sort](https://huggingface.co/datasets/fouad1233/so101_cap_sort)
73
+ - **Episodes:** 50
74
+ - **Frames:** 40613
75
+ - **Frame rate:** 30 FPS
76
+ - **Task(s):** "Pick up the purple caps and place them in the pink bowl"
77
+
78
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=fouad1233/so101_cap_sort">
79
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
80
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
81
+ </a>
82
+
83
+
84
+ ## Training Configuration
85
+
86
+ | Setting | Value |
87
+ | --- | --- |
88
+ | Training steps | 20000 |
89
+ | Batch size | 16 |
90
+ | Optimizer | adamw |
91
+ | Learning rate | 2.5e-05 |
92
+ | Seed | 1000 |
93
+ | LeRobot version | 0.5.2 |
94
+
95
+ ---
96
+
97
+ ## How to Get Started with the Model
98
+
99
+ New to LeRobot? These guides cover the full workflow:
100
+
101
+ - **[Install LeRobot](https://huggingface.co/docs/lerobot/main/en/installation)** — set up the `lerobot` package.
102
+ - **[Hardware setup](https://huggingface.co/docs/lerobot/main/en/hardware_guide)** — assemble, wire, and calibrate your robot and cameras.
103
+ - **[Record data & train a policy](https://huggingface.co/docs/lerobot/en/il_robots)** — the end-to-end imitation-learning walkthrough.
104
+ - **[CLI cheat-sheet](https://huggingface.co/docs/lerobot/main/en/cheat-sheet)** — quick reference for the `lerobot-*` commands.
105
+
106
+ The short version to run and train this policy:
107
+
108
+ ### Run the policy on your robot
109
+
110
+ ```bash
111
+ lerobot-rollout \
112
+ --strategy.type=base \
113
+ --robot.type=so_follower \
114
+ --robot.port=<your_robot_port> \
115
+ --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}}" \
116
+ --policy.path=fouad1233/pi0_cap_sort_lora \
117
+ --task="Pick up the purple caps and place them in the pink bowl" \
118
+ --duration=60
119
+ ```
120
+
121
+ 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.
122
+
123
+ 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).
124
+
125
+ ### Train your own policy
126
+
127
+ This policy type is usually fine-tuned from the pretrained base model [lerobot/pi0_base](https://huggingface.co/lerobot/pi0_base):
128
+
129
+ ```bash
130
+ lerobot-train \
131
+ --dataset.repo_id=${HF_USER}/<dataset> \
132
+ --policy.path=lerobot/pi0_base \
133
+ --output_dir=outputs/train/<policy_repo_id> \
134
+ --job_name=lerobot_training \
135
+ --policy.device=cuda \
136
+ --policy.repo_id=${HF_USER}/<policy_repo_id> \
137
+ --wandb.enable=true
138
+ ```
139
+
140
+ _Writes checkpoints to `outputs/train/<policy_repo_id>/checkpoints/`._
141
+
142
+ ---
143
+
144
+ ## Evaluation
145
+
146
+ <!-- Report real-robot results here: run the policy several times per task and count the
147
+ successes. Delete the "No evaluation results" line and fill in this table instead:
148
+
149
+ | Task | Trials | Successes | Success rate |
150
+ | ---- | ------ | --------- | ------------ |
151
+ | pick the lego brick | 10 | 8 | 80% |
152
+
153
+ Also worth noting: anything that affects difficulty (new object positions, lighting,
154
+ distractors, a different robot of the same type, ...).
155
+ -->
156
+
157
+ _No evaluation results have been provided for this policy yet._
158
+
159
+ ---
160
+
161
+ ## Citation
162
+
163
+ If you use this policy, please cite the method linked in the description above, along with LeRobot:
164
+
165
+ ```bibtex
166
+ @misc{cadene2024lerobot,
167
+ 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},
168
+ title = {LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch},
169
+ howpublished = "\url{https://github.com/huggingface/lerobot}",
170
+ year = {2024}
171
+ }
172
+ ```
adapter_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "PI0Policy",
7
+ "parent_library": "lerobot.policies.pi0.modeling_pi0"
8
+ },
9
+ "base_model_name_or_path": "lerobot/pi0_base",
10
+ "bias": "none",
11
+ "corda_config": null,
12
+ "ensure_weight_tying": false,
13
+ "eva_config": null,
14
+ "exclude_modules": null,
15
+ "fan_in_fan_out": false,
16
+ "inference_mode": true,
17
+ "init_lora_weights": true,
18
+ "layer_replication": null,
19
+ "layers_pattern": null,
20
+ "layers_to_transform": null,
21
+ "loftq_config": {},
22
+ "lora_alpha": 32,
23
+ "lora_bias": false,
24
+ "lora_dropout": 0.0,
25
+ "lora_ga_config": null,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": [],
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.19.1",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": "(.*\\.gemma_expert\\..*\\.self_attn\\.(q|v)_proj|model\\.(state_proj|action_in_proj|action_out_proj|action_time_mlp_in|action_time_mlp_out))",
36
+ "target_parameters": null,
37
+ "task_type": null,
38
+ "trainable_token_indices": null,
39
+ "use_bdlora": null,
40
+ "use_dora": false,
41
+ "use_qalora": false,
42
+ "use_rslora": false
43
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e85159188e735987d3ed7d0e81a27ff92734f458be2e6fa251403d222bcade4
3
+ size 5557624
config.json ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 6
41
+ ]
42
+ }
43
+ },
44
+ "device": "cuda",
45
+ "use_amp": false,
46
+ "use_peft": true,
47
+ "push_to_hub": true,
48
+ "repo_id": "fouad1233/pi0_cap_sort_lora",
49
+ "private": null,
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": "float32",
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
+ "shoulder_pan.pos",
74
+ "shoulder_lift.pos",
75
+ "elbow_flex.pos",
76
+ "wrist_flex.pos",
77
+ "wrist_roll.pos",
78
+ "gripper.pos"
79
+ ],
80
+ "rtc_config": null,
81
+ "image_resolution": [
82
+ 224,
83
+ 224
84
+ ],
85
+ "empty_cameras": 0,
86
+ "normalization_mapping": {
87
+ "VISUAL": "IDENTITY",
88
+ "STATE": "MEAN_STD",
89
+ "ACTION": "MEAN_STD"
90
+ },
91
+ "gradient_checkpointing": false,
92
+ "compile_model": false,
93
+ "compile_mode": "max-autotune",
94
+ "freeze_vision_encoder": false,
95
+ "train_expert_only": false,
96
+ "optimizer_lr": 2.5e-05,
97
+ "optimizer_betas": [
98
+ 0.9,
99
+ 0.95
100
+ ],
101
+ "optimizer_eps": 1e-08,
102
+ "optimizer_weight_decay": 0.01,
103
+ "optimizer_grad_clip_norm": 1.0,
104
+ "scheduler_warmup_steps": 1000,
105
+ "scheduler_decay_steps": 30000,
106
+ "scheduler_decay_lr": 2.5e-06,
107
+ "tokenizer_max_length": 48
108
+ }
train_config.json ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "fouad1233/so101_cap_sort",
4
+ "root": "/home/gtu_dsa/.cache/huggingface/lerobot/fouad1233/so101_cap_sort",
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": "pyav",
80
+ "return_uint8": false,
81
+ "streaming": false,
82
+ "eval_split": 0.0
83
+ },
84
+ "env": null,
85
+ "policy": {
86
+ "type": "pi0",
87
+ "n_obs_steps": 1,
88
+ "input_features": {
89
+ "observation.images.base_0_rgb": {
90
+ "type": "VISUAL",
91
+ "shape": [
92
+ 3,
93
+ 224,
94
+ 224
95
+ ]
96
+ },
97
+ "observation.images.left_wrist_0_rgb": {
98
+ "type": "VISUAL",
99
+ "shape": [
100
+ 3,
101
+ 224,
102
+ 224
103
+ ]
104
+ },
105
+ "observation.images.right_wrist_0_rgb": {
106
+ "type": "VISUAL",
107
+ "shape": [
108
+ 3,
109
+ 224,
110
+ 224
111
+ ]
112
+ },
113
+ "observation.state": {
114
+ "type": "STATE",
115
+ "shape": [
116
+ 32
117
+ ]
118
+ }
119
+ },
120
+ "output_features": {
121
+ "action": {
122
+ "type": "ACTION",
123
+ "shape": [
124
+ 6
125
+ ]
126
+ }
127
+ },
128
+ "device": "cuda",
129
+ "use_amp": false,
130
+ "use_peft": true,
131
+ "push_to_hub": true,
132
+ "repo_id": "fouad1233/pi0_cap_sort_lora",
133
+ "private": null,
134
+ "tags": null,
135
+ "license": null,
136
+ "pretrained_path": "lerobot/pi0_base",
137
+ "pretrained_revision": null,
138
+ "paligemma_variant": "gemma_2b",
139
+ "action_expert_variant": "gemma_300m",
140
+ "dtype": "float32",
141
+ "chunk_size": 50,
142
+ "n_action_steps": 50,
143
+ "max_state_dim": 32,
144
+ "max_action_dim": 32,
145
+ "num_inference_steps": 10,
146
+ "time_sampling_beta_alpha": 1.5,
147
+ "time_sampling_beta_beta": 1.0,
148
+ "time_sampling_scale": 0.999,
149
+ "time_sampling_offset": 0.001,
150
+ "min_period": 0.004,
151
+ "max_period": 4.0,
152
+ "use_relative_actions": false,
153
+ "relative_exclude_joints": [
154
+ "gripper"
155
+ ],
156
+ "action_feature_names": [
157
+ "shoulder_pan.pos",
158
+ "shoulder_lift.pos",
159
+ "elbow_flex.pos",
160
+ "wrist_flex.pos",
161
+ "wrist_roll.pos",
162
+ "gripper.pos"
163
+ ],
164
+ "rtc_config": null,
165
+ "image_resolution": [
166
+ 224,
167
+ 224
168
+ ],
169
+ "empty_cameras": 0,
170
+ "normalization_mapping": {
171
+ "VISUAL": "IDENTITY",
172
+ "STATE": "MEAN_STD",
173
+ "ACTION": "MEAN_STD"
174
+ },
175
+ "gradient_checkpointing": false,
176
+ "compile_model": false,
177
+ "compile_mode": "max-autotune",
178
+ "freeze_vision_encoder": false,
179
+ "train_expert_only": false,
180
+ "optimizer_lr": 2.5e-05,
181
+ "optimizer_betas": [
182
+ 0.9,
183
+ 0.95
184
+ ],
185
+ "optimizer_eps": 1e-08,
186
+ "optimizer_weight_decay": 0.01,
187
+ "optimizer_grad_clip_norm": 1.0,
188
+ "scheduler_warmup_steps": 1000,
189
+ "scheduler_decay_steps": 30000,
190
+ "scheduler_decay_lr": 2.5e-06,
191
+ "tokenizer_max_length": 48
192
+ },
193
+ "reward_model": null,
194
+ "output_dir": "outputs/train/pi0_cap_sort",
195
+ "job_name": "pi0_cap_sort",
196
+ "resume": false,
197
+ "seed": 1000,
198
+ "cudnn_deterministic": false,
199
+ "num_workers": 4,
200
+ "batch_size": 16,
201
+ "prefetch_factor": 4,
202
+ "persistent_workers": true,
203
+ "steps": 20000,
204
+ "env_eval_freq": 20000,
205
+ "log_freq": 200,
206
+ "eval_steps": 0,
207
+ "max_eval_samples": 0,
208
+ "tolerance_s": 0.0001,
209
+ "save_checkpoint": true,
210
+ "save_freq": 2000,
211
+ "use_policy_training_preset": true,
212
+ "optimizer": {
213
+ "type": "adamw",
214
+ "lr": 2.5e-05,
215
+ "weight_decay": 0.01,
216
+ "grad_clip_norm": 1.0,
217
+ "betas": [
218
+ 0.9,
219
+ 0.95
220
+ ],
221
+ "eps": 1e-08
222
+ },
223
+ "scheduler": {
224
+ "type": "cosine_decay_with_warmup",
225
+ "num_warmup_steps": 1000,
226
+ "num_decay_steps": 30000,
227
+ "peak_lr": 2.5e-05,
228
+ "decay_lr": 2.5e-06
229
+ },
230
+ "eval": {
231
+ "n_episodes": 50,
232
+ "batch_size": 14,
233
+ "use_async_envs": true,
234
+ "recording": false,
235
+ "recording_repo_id": null,
236
+ "recording_private": false
237
+ },
238
+ "wandb": {
239
+ "enable": false,
240
+ "disable_artifact": false,
241
+ "project": "lerobot",
242
+ "entity": null,
243
+ "notes": null,
244
+ "run_id": null,
245
+ "mode": null,
246
+ "add_tags": true
247
+ },
248
+ "peft": {
249
+ "target_modules": null,
250
+ "full_training_modules": null,
251
+ "method_type": "LORA",
252
+ "init_type": null,
253
+ "r": 16,
254
+ "lora_alpha": 32
255
+ },
256
+ "sample_weighting": null,
257
+ "rename_map": {},
258
+ "checkpoint_path": null
259
+ }