Robotics
LeRobot
Safetensors
smolvla
Shirish24 commited on
Commit
1079b05
·
verified ·
1 Parent(s): 3952510

Upload policy weights, train config and readme

Browse files
Files changed (5) hide show
  1. README.md +175 -0
  2. adapter_config.json +43 -0
  3. adapter_model.safetensors +3 -0
  4. config.json +126 -0
  5. train_config.json +286 -0
README.md ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: lerobot/smolvla_base
3
+ datasets: Shirish24/Surgical2
4
+ library_name: lerobot
5
+ license: apache-2.0
6
+ model_name: smolvla
7
+ pipeline_tag: robotics
8
+ tags:
9
+ - smolvla
10
+ - robotics
11
+ - lerobot
12
+ ---
13
+
14
+ # Model Card for smolvla
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+ [SmolVLA](https://huggingface.co/papers/2506.01844) is a compact, efficient vision-language-action model that achieves competitive performance at reduced computational costs and can be deployed on consumer-grade hardware.
20
+
21
+
22
+
23
+ <p align="center">
24
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/640e21ef3c82bd463ee5a76d/aooU0a3DMtYmy_1IWMaIM.png" alt="smolvla 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 smolvla guide](https://huggingface.co/docs/lerobot/main/en/smolvla), 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/smolvla_base](https://huggingface.co/lerobot/smolvla_base)
46
+ - **Robot type:** `so_follower`
47
+ - **Cameras:** `top`, `top_annotated`, `gripper`, `gripper_annotated`, `realsense`, `realsense_annotated`
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.top` | VISUAL | `(3, 480, 640)` |
59
+ | `observation.images.top_annotated` | VISUAL | `(3, 480, 640)` |
60
+ | `observation.images.gripper` | VISUAL | `(3, 480, 640)` |
61
+ | `observation.images.gripper_annotated` | VISUAL | `(3, 480, 640)` |
62
+ | `observation.images.realsense` | VISUAL | `(3, 480, 640)` |
63
+ | `observation.images.realsense_annotated` | VISUAL | `(3, 480, 640)` |
64
+ | `observation.state` | STATE | `(6,)` |
65
+
66
+ **Outputs**
67
+
68
+ | Feature | Type | Shape |
69
+ | --- | --- | --- |
70
+ | `action` | ACTION | `(6,)` |
71
+
72
+
73
+ ## Training Dataset
74
+
75
+ - **Repository:** [Shirish24/Surgical2](https://huggingface.co/datasets/Shirish24/Surgical2)
76
+ - **Episodes:** 27
77
+ - **Frames:** 11499
78
+ - **Frame rate:** 30 FPS
79
+ - **Task(s):** "handover the forceps", "handover the curved mayo scissors", "I need forecps.", "pass me the forecps.", "Handover teh scalpel.", "Hand me the scalpel."
80
+
81
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=Shirish24/Surgical2">
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 | 30000 |
92
+ | Batch size | 16 |
93
+ | Optimizer | adamw |
94
+ | Learning rate | 0.0001 |
95
+ | Seed | 1000 |
96
+ | LeRobot version | 0.6.1 |
97
+
98
+ ---
99
+
100
+ ## How to Get Started with the Model
101
+
102
+ New to LeRobot? These guides cover the full workflow:
103
+
104
+ - **[Install LeRobot](https://huggingface.co/docs/lerobot/main/en/installation)** — set up the `lerobot` package.
105
+ - **[Hardware setup](https://huggingface.co/docs/lerobot/main/en/hardware_guide)** — assemble, wire, and calibrate your robot and cameras.
106
+ - **[Record data & train a policy](https://huggingface.co/docs/lerobot/en/il_robots)** — the end-to-end imitation-learning walkthrough.
107
+ - **[CLI cheat-sheet](https://huggingface.co/docs/lerobot/main/en/cheat-sheet)** — quick reference for the `lerobot-*` commands.
108
+
109
+ The short version to run and train this policy:
110
+
111
+ ### Run the policy on your robot
112
+
113
+ ```bash
114
+ lerobot-rollout \
115
+ --strategy.type=base \
116
+ --robot.type=so_follower \
117
+ --robot.port=<your_robot_port> \
118
+ --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}}" \
119
+ --policy.path=Shirish24/smolvla-surgical-raw-annotations \
120
+ --task="handover the forceps" \
121
+ --duration=60
122
+ ```
123
+
124
+ 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.
125
+
126
+ 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).
127
+
128
+ ### Train your own policy
129
+
130
+ This policy type is usually fine-tuned from the pretrained base model [lerobot/smolvla_base](https://huggingface.co/lerobot/smolvla_base):
131
+
132
+ ```bash
133
+ lerobot-train \
134
+ --dataset.repo_id=${HF_USER}/<dataset> \
135
+ --policy.path=lerobot/smolvla_base \
136
+ --output_dir=outputs/train/<policy_repo_id> \
137
+ --job_name=lerobot_training \
138
+ --policy.device=cuda \
139
+ --policy.repo_id=${HF_USER}/<policy_repo_id> \
140
+ --wandb.enable=true
141
+ ```
142
+
143
+ _Writes checkpoints to `outputs/train/<policy_repo_id>/checkpoints/`._
144
+
145
+ ---
146
+
147
+ ## Evaluation
148
+
149
+ <!-- Report real-robot results here: run the policy several times per task and count the
150
+ successes. Delete the "No evaluation results" line and fill in this table instead:
151
+
152
+ | Task | Trials | Successes | Success rate |
153
+ | ---- | ------ | --------- | ------------ |
154
+ | pick the lego brick | 10 | 8 | 80% |
155
+
156
+ Also worth noting: anything that affects difficulty (new object positions, lighting,
157
+ distractors, a different robot of the same type, ...).
158
+ -->
159
+
160
+ _No evaluation results have been provided for this policy yet._
161
+
162
+ ---
163
+
164
+ ## Citation
165
+
166
+ If you use this policy, please cite the method linked in the description above, along with LeRobot:
167
+
168
+ ```bibtex
169
+ @misc{cadene2024lerobot,
170
+ 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},
171
+ title = {LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch},
172
+ howpublished = "\url{https://github.com/huggingface/lerobot}",
173
+ year = {2024}
174
+ }
175
+ ```
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": "SmolVLAPolicy",
7
+ "parent_library": "lerobot.policies.smolvla.modeling_smolvla"
8
+ },
9
+ "base_model_name_or_path": "/media/protomate/Volume/shirish/Phd/SurgicalHandover/lerobot/runs/smolvla-raw/checkpoints/030000/pretrained_model",
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": 8,
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": "(model\\.vlm_with_expert\\.lm_expert\\..*\\.(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:0c8ae214cfb7cb3ad6c4e8c7f9fcc7392c18cff47a71050867c725d1fe1886bf
3
+ size 2981888
config.json ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "smolvla",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.images.top": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 480,
10
+ 640
11
+ ]
12
+ },
13
+ "observation.images.top_annotated": {
14
+ "type": "VISUAL",
15
+ "shape": [
16
+ 3,
17
+ 480,
18
+ 640
19
+ ]
20
+ },
21
+ "observation.images.gripper": {
22
+ "type": "VISUAL",
23
+ "shape": [
24
+ 3,
25
+ 480,
26
+ 640
27
+ ]
28
+ },
29
+ "observation.images.gripper_annotated": {
30
+ "type": "VISUAL",
31
+ "shape": [
32
+ 3,
33
+ 480,
34
+ 640
35
+ ]
36
+ },
37
+ "observation.images.realsense": {
38
+ "type": "VISUAL",
39
+ "shape": [
40
+ 3,
41
+ 480,
42
+ 640
43
+ ]
44
+ },
45
+ "observation.images.realsense_annotated": {
46
+ "type": "VISUAL",
47
+ "shape": [
48
+ 3,
49
+ 480,
50
+ 640
51
+ ]
52
+ },
53
+ "observation.state": {
54
+ "type": "STATE",
55
+ "shape": [
56
+ 6
57
+ ]
58
+ }
59
+ },
60
+ "output_features": {
61
+ "action": {
62
+ "type": "ACTION",
63
+ "shape": [
64
+ 6
65
+ ]
66
+ }
67
+ },
68
+ "device": "cuda",
69
+ "use_amp": false,
70
+ "use_peft": true,
71
+ "push_to_hub": true,
72
+ "repo_id": "Shirish24/smolvla-surgical-raw-annotations",
73
+ "private": null,
74
+ "tags": null,
75
+ "license": null,
76
+ "pretrained_path": "/media/protomate/Volume/shirish/Phd/SurgicalHandover/lerobot/runs/smolvla-raw/checkpoints/030000/pretrained_model",
77
+ "pretrained_revision": null,
78
+ "chunk_size": 50,
79
+ "n_action_steps": 50,
80
+ "normalization_mapping": {
81
+ "VISUAL": "IDENTITY",
82
+ "STATE": "MEAN_STD",
83
+ "ACTION": "MEAN_STD"
84
+ },
85
+ "max_state_dim": 32,
86
+ "max_action_dim": 32,
87
+ "resize_imgs_with_padding": [
88
+ 512,
89
+ 512
90
+ ],
91
+ "empty_cameras": 0,
92
+ "adapt_to_pi_aloha": false,
93
+ "use_delta_joint_actions_aloha": false,
94
+ "tokenizer_max_length": 48,
95
+ "num_steps": 10,
96
+ "use_cache": true,
97
+ "freeze_vision_encoder": true,
98
+ "train_expert_only": true,
99
+ "train_state_proj": true,
100
+ "optimizer_lr": 0.0001,
101
+ "optimizer_betas": [
102
+ 0.9,
103
+ 0.95
104
+ ],
105
+ "optimizer_eps": 1e-08,
106
+ "optimizer_weight_decay": 1e-10,
107
+ "optimizer_grad_clip_norm": 10,
108
+ "scheduler_warmup_steps": 1000,
109
+ "scheduler_decay_steps": 30000,
110
+ "scheduler_decay_lr": 2.5e-06,
111
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
112
+ "load_vlm_weights": false,
113
+ "add_image_special_tokens": false,
114
+ "attention_mode": "cross_attn",
115
+ "prefix_length": -1,
116
+ "pad_language_to": "longest",
117
+ "num_expert_layers": -1,
118
+ "num_vlm_layers": 16,
119
+ "self_attn_every_n_layers": 2,
120
+ "expert_width_multiplier": 0.75,
121
+ "min_period": 0.004,
122
+ "max_period": 4.0,
123
+ "rtc_config": null,
124
+ "compile_model": false,
125
+ "compile_mode": "max-autotune"
126
+ }
train_config.json ADDED
@@ -0,0 +1,286 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "Shirish24/Surgical2",
4
+ "root": null,
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": "smolvla",
88
+ "n_obs_steps": 1,
89
+ "input_features": {
90
+ "observation.images.top": {
91
+ "type": "VISUAL",
92
+ "shape": [
93
+ 3,
94
+ 480,
95
+ 640
96
+ ]
97
+ },
98
+ "observation.images.top_annotated": {
99
+ "type": "VISUAL",
100
+ "shape": [
101
+ 3,
102
+ 480,
103
+ 640
104
+ ]
105
+ },
106
+ "observation.images.gripper": {
107
+ "type": "VISUAL",
108
+ "shape": [
109
+ 3,
110
+ 480,
111
+ 640
112
+ ]
113
+ },
114
+ "observation.images.gripper_annotated": {
115
+ "type": "VISUAL",
116
+ "shape": [
117
+ 3,
118
+ 480,
119
+ 640
120
+ ]
121
+ },
122
+ "observation.images.realsense": {
123
+ "type": "VISUAL",
124
+ "shape": [
125
+ 3,
126
+ 480,
127
+ 640
128
+ ]
129
+ },
130
+ "observation.images.realsense_annotated": {
131
+ "type": "VISUAL",
132
+ "shape": [
133
+ 3,
134
+ 480,
135
+ 640
136
+ ]
137
+ },
138
+ "observation.state": {
139
+ "type": "STATE",
140
+ "shape": [
141
+ 6
142
+ ]
143
+ }
144
+ },
145
+ "output_features": {
146
+ "action": {
147
+ "type": "ACTION",
148
+ "shape": [
149
+ 6
150
+ ]
151
+ }
152
+ },
153
+ "device": "cuda",
154
+ "use_amp": false,
155
+ "use_peft": true,
156
+ "push_to_hub": true,
157
+ "repo_id": "Shirish24/smolvla-surgical-raw-annotations",
158
+ "private": null,
159
+ "tags": null,
160
+ "license": null,
161
+ "pretrained_path": "/media/protomate/Volume/shirish/Phd/SurgicalHandover/lerobot/runs/smolvla-raw/checkpoints/030000/pretrained_model",
162
+ "pretrained_revision": null,
163
+ "chunk_size": 50,
164
+ "n_action_steps": 50,
165
+ "normalization_mapping": {
166
+ "VISUAL": "IDENTITY",
167
+ "STATE": "MEAN_STD",
168
+ "ACTION": "MEAN_STD"
169
+ },
170
+ "max_state_dim": 32,
171
+ "max_action_dim": 32,
172
+ "resize_imgs_with_padding": [
173
+ 512,
174
+ 512
175
+ ],
176
+ "empty_cameras": 0,
177
+ "adapt_to_pi_aloha": false,
178
+ "use_delta_joint_actions_aloha": false,
179
+ "tokenizer_max_length": 48,
180
+ "num_steps": 10,
181
+ "use_cache": true,
182
+ "freeze_vision_encoder": true,
183
+ "train_expert_only": true,
184
+ "train_state_proj": true,
185
+ "optimizer_lr": 0.0001,
186
+ "optimizer_betas": [
187
+ 0.9,
188
+ 0.95
189
+ ],
190
+ "optimizer_eps": 1e-08,
191
+ "optimizer_weight_decay": 1e-10,
192
+ "optimizer_grad_clip_norm": 10,
193
+ "scheduler_warmup_steps": 1000,
194
+ "scheduler_decay_steps": 30000,
195
+ "scheduler_decay_lr": 2.5e-06,
196
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
197
+ "load_vlm_weights": false,
198
+ "add_image_special_tokens": false,
199
+ "attention_mode": "cross_attn",
200
+ "prefix_length": -1,
201
+ "pad_language_to": "longest",
202
+ "num_expert_layers": -1,
203
+ "num_vlm_layers": 16,
204
+ "self_attn_every_n_layers": 2,
205
+ "expert_width_multiplier": 0.75,
206
+ "min_period": 0.004,
207
+ "max_period": 4.0,
208
+ "rtc_config": null,
209
+ "compile_model": false,
210
+ "compile_mode": "max-autotune"
211
+ },
212
+ "reward_model": null,
213
+ "output_dir": "runs/smolvla-raw-annotations",
214
+ "job_name": "smolvla",
215
+ "resume": false,
216
+ "seed": 1000,
217
+ "cudnn_deterministic": false,
218
+ "num_workers": 4,
219
+ "batch_size": 16,
220
+ "prefetch_factor": 4,
221
+ "persistent_workers": true,
222
+ "steps": 30000,
223
+ "env_eval_freq": 20000,
224
+ "log_freq": 200,
225
+ "eval_steps": 0,
226
+ "max_eval_samples": 0,
227
+ "tolerance_s": 0.0001,
228
+ "save_checkpoint": true,
229
+ "save_freq": 5000,
230
+ "use_policy_training_preset": true,
231
+ "optimizer": {
232
+ "type": "adamw",
233
+ "lr": 0.0001,
234
+ "weight_decay": 1e-10,
235
+ "grad_clip_norm": 10,
236
+ "betas": [
237
+ 0.9,
238
+ 0.95
239
+ ],
240
+ "eps": 1e-08
241
+ },
242
+ "scheduler": {
243
+ "type": "cosine_decay_with_warmup",
244
+ "num_warmup_steps": 1000,
245
+ "num_decay_steps": 30000,
246
+ "peak_lr": 0.0001,
247
+ "decay_lr": 2.5e-06
248
+ },
249
+ "eval": {
250
+ "n_episodes": 50,
251
+ "batch_size": 14,
252
+ "use_async_envs": true,
253
+ "recording": false,
254
+ "recording_repo_id": null,
255
+ "recording_private": false
256
+ },
257
+ "wandb": {
258
+ "enable": true,
259
+ "disable_artifact": false,
260
+ "project": "surgical-handover-smolvla-raw-annotations",
261
+ "entity": null,
262
+ "notes": null,
263
+ "run_id": "p4f4ba63",
264
+ "mode": null,
265
+ "add_tags": true
266
+ },
267
+ "peft": {
268
+ "target_modules": null,
269
+ "full_training_modules": null,
270
+ "method_type": "LORA",
271
+ "init_type": null,
272
+ "r": 16,
273
+ "lora_alpha": null
274
+ },
275
+ "job": {
276
+ "target": null,
277
+ "image": "huggingface/lerobot-gpu:latest",
278
+ "timeout": "2d",
279
+ "detach": false,
280
+ "tags": []
281
+ },
282
+ "save_checkpoint_to_hub": false,
283
+ "sample_weighting": null,
284
+ "rename_map": {},
285
+ "checkpoint_path": null
286
+ }