usesmol
#16
by
boluool - opened
README.md
CHANGED
|
@@ -1,146 +1,60 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
-
- en
|
| 4 |
-
library_name: lerobot
|
| 5 |
pipeline_tag: robotics
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# SmolVLA
|
| 14 |
-
|
| 15 |
-
SmolVLA is a compact, efficient Vision-Language-Action (VLA) model designed for affordable robotics, trainable on a single GPU and deployable on consumer hardware, while matching the performance of much larger VLAs through community-driven data.
|
| 16 |
-
|
| 17 |
-
**Original paper:** (SmolVLA: A Vision-Language-Action Model for Affordable and Efficient Robotics)[https://arxiv.org/abs/2506.01844]
|
| 18 |
-
**Reference implementation:** https://github.com/huggingface/lerobot
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
| 22 |
|
| 23 |
-
|
| 24 |
-
- **Outputs:** continuous actions
|
| 25 |
-
- **Training objective:** flow matching
|
| 26 |
-
- **Action representation:** continuous
|
| 27 |
-
- **Intended use:** Base model to fine tune on your specific use case
|
| 28 |
|
|
|
|
| 29 |
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
### Installation
|
| 33 |
-
|
| 34 |
-
```bash
|
| 35 |
-
pip install "lerobot[smolvla]"
|
| 36 |
-
```
|
| 37 |
-
For full installation details (including optional video dependencies such as ffmpeg for torchcodec), see the official documentation: https://huggingface.co/docs/lerobot/installation
|
| 38 |
|
| 39 |
-
|
| 40 |
|
| 41 |
-
|
| 42 |
-
import torch
|
| 43 |
-
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
| 44 |
-
from lerobot.policies.factory import make_pre_post_processors
|
| 45 |
|
| 46 |
-
|
| 47 |
-
from lerobot.policies.smolvla.modeling_smolvla import SmolVLAPolicy
|
| 48 |
-
|
| 49 |
-
# load a policy
|
| 50 |
-
model_id = "lerobot/smolvla_base" # <- swap checkpoint
|
| 51 |
-
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
| 52 |
-
|
| 53 |
-
policy = SmolVLAPolicy.from_pretrained(model_id).to(device).eval()
|
| 54 |
-
|
| 55 |
-
preprocess, postprocess = make_pre_post_processors(
|
| 56 |
-
policy.config,
|
| 57 |
-
model_id,
|
| 58 |
-
preprocessor_overrides={"device_processor": {"device": str(device)}},
|
| 59 |
-
)
|
| 60 |
-
# load a lerobotdataset
|
| 61 |
-
dataset = LeRobotDataset("lerobot/libero")
|
| 62 |
-
|
| 63 |
-
# pick an episode
|
| 64 |
-
episode_index = 0
|
| 65 |
-
|
| 66 |
-
# each episode corresponds to a contiguous range of frame indices
|
| 67 |
-
from_idx = dataset.meta.episodes["dataset_from_index"][episode_index]
|
| 68 |
-
to_idx = dataset.meta.episodes["dataset_to_index"][episode_index]
|
| 69 |
-
|
| 70 |
-
# get a single frame from that episode (e.g. the first frame)
|
| 71 |
-
frame_index = from_idx
|
| 72 |
-
frame = dict(dataset[frame_index])
|
| 73 |
-
|
| 74 |
-
batch = preprocess(frame)
|
| 75 |
-
with torch.inference_mode():
|
| 76 |
-
pred_action = policy.select_action(frame)
|
| 77 |
-
# use your policy postprocess, this post process the action
|
| 78 |
-
# for instance unnormalize the actions, detokenize it etc..
|
| 79 |
-
pred_action = postprocess(pred_action)
|
| 80 |
-
```
|
| 81 |
|
|
|
|
|
|
|
| 82 |
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
If you’re training / fine-tuning, you typically call `forward(...)` to get a loss and then:
|
| 86 |
-
|
| 87 |
-
```python
|
| 88 |
-
policy.train()
|
| 89 |
-
batch = dict(dataset[0])
|
| 90 |
-
batch = preprocess(batch)
|
| 91 |
-
|
| 92 |
-
loss, outputs = policy.forward(batch)
|
| 93 |
-
loss.backward()
|
| 94 |
|
|
|
|
|
|
|
|
|
|
| 95 |
```
|
| 96 |
|
| 97 |
-
|
| 98 |
-
>
|
| 99 |
-
> - Some policies expose `policy(**batch)` or return a dict; keep this snippet aligned with the policy API.
|
| 100 |
-
> - Use your trainer script (`lerobot-train`) for full training loops.
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
## How to train / fine-tune
|
| 104 |
-
|
| 105 |
```bash
|
| 106 |
-
lerobot
|
| 107 |
-
--
|
| 108 |
-
--
|
| 109 |
-
--
|
| 110 |
-
--
|
| 111 |
-
--
|
| 112 |
-
--
|
| 113 |
--policy.device=cuda \
|
| 114 |
-
--
|
| 115 |
-
--batch_size=4
|
| 116 |
```
|
| 117 |
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
-
|
| 123 |
-
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
For instance, run this command or API example to run inference and record 10 evaluation episodes:
|
| 131 |
-
|
| 132 |
-
```
|
| 133 |
-
lerobot-record \
|
| 134 |
-
--robot.type=so100_follower \
|
| 135 |
-
--robot.port=/dev/ttyACM1 \
|
| 136 |
-
--robot.cameras="{ up: {type: opencv, index_or_path: /dev/video10, width: 640, height: 480, fps: 30}, side: {type: intelrealsense, serial_number_or_name: 233522074606, width: 640, height: 480, fps: 30}}" \
|
| 137 |
-
--robot.id=my_awesome_follower_arm \
|
| 138 |
-
--display_data=false \
|
| 139 |
-
--dataset.repo_id=${HF_USER}/eval_so100 \
|
| 140 |
-
--dataset.single_task="Put lego brick into the transparent box" \
|
| 141 |
-
# <- Teleop optional if you want to teleoperate in between episodes \
|
| 142 |
-
# --teleop.type=so100_leader \
|
| 143 |
-
# --teleop.port=/dev/ttyACM0 \
|
| 144 |
-
# --teleop.id=my_awesome_leader_arm \
|
| 145 |
-
--policy.path=${HF_USER}/my_policy
|
| 146 |
```
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
pipeline_tag: robotics
|
| 3 |
tags:
|
| 4 |
+
- smolvla
|
| 5 |
+
library_name: lerobot
|
| 6 |
+
datasets:
|
| 7 |
+
- lerobot/svla_so101_pickplace
|
| 8 |
---
|
| 9 |
|
| 10 |
+
## SmolVLA: A vision-language-action model for affordable and efficient robotics
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
+
Resources and technical documentation:
|
| 13 |
|
| 14 |
+
[SmolVLA Paper](https://huggingface.co/papers/2506.01844)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
+
[SmolVLA Blogpost](https://huggingface.co/blog/smolvla)
|
| 17 |
|
| 18 |
+
[Code](https://github.com/huggingface/lerobot/blob/main/lerobot/common/policies/smolvla/modeling_smolvla.py)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+
[Train using Google Colab Notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/lerobot/training-smolvla.ipynb#scrollTo=ZO52lcQtxseE)
|
| 21 |
|
| 22 |
+
[SmolVLA HF Documentation](https://huggingface.co/docs/lerobot/smolvla)
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
Designed by Hugging Face.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
+
This model has 450M parameters in total.
|
| 27 |
+
You can use inside the [LeRobot library](https://github.com/huggingface/lerobot).
|
| 28 |
|
| 29 |
+
Before proceeding to the next steps, you need to properly install the environment by following [Installation Guide](https://huggingface.co/docs/lerobot/installation) on the docs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
+
Install smolvla extra dependencies:
|
| 32 |
+
```bash
|
| 33 |
+
pip install -e ".[smolvla]"
|
| 34 |
```
|
| 35 |
|
| 36 |
+
Example of finetuning the smolvla pretrained model (`smolvla_base`):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
```bash
|
| 38 |
+
python lerobot/scripts/train.py \
|
| 39 |
+
--policy.path=lerobot/smolvla_base \
|
| 40 |
+
--dataset.repo_id=lerobot/svla_so101_pickplace \
|
| 41 |
+
--batch_size=64 \
|
| 42 |
+
--steps=20000 \
|
| 43 |
+
--output_dir=outputs/train/my_smolvla \
|
| 44 |
+
--job_name=my_smolvla_training \
|
| 45 |
--policy.device=cuda \
|
| 46 |
+
--wandb.enable=true
|
|
|
|
| 47 |
```
|
| 48 |
|
| 49 |
+
Example of finetuning the smolvla neural network with pretrained VLM and action expert
|
| 50 |
+
intialized from scratch:
|
| 51 |
+
```bash
|
| 52 |
+
python lerobot/scripts/train.py \
|
| 53 |
+
--dataset.repo_id=lerobot/svla_so101_pickplace \
|
| 54 |
+
--batch_size=64 \
|
| 55 |
+
--steps=200000 \
|
| 56 |
+
--output_dir=outputs/train/my_smolvla \
|
| 57 |
+
--job_name=my_smolvla_training \
|
| 58 |
+
--policy.device=cuda \
|
| 59 |
+
--wandb.enable=true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
```
|