--- base_model: lerobot/smolvla_base datasets: io-intelligence/so101_stack_cups library_name: lerobot license: apache-2.0 model_name: smolvla pipeline_tag: robotics tags: - robotics - smolvla - stack-cups - lerobot - so101 --- # Model Card for smolvla [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. Fine-tuned on SO-101 for the task **"Stack the cups"**.

smolvla architecture

Real-robot inference demo (also available as inference_demo.mp4 in this repo).

This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot). 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). --- ## Model Details - **License:** apache-2.0 - **Fine-tuned from:** [lerobot/smolvla_base](https://huggingface.co/lerobot/smolvla_base) - **Robot type:** `so101_follower` (SO-101) - **Cameras (physical → policy):** see table below ### Camera mapping The dataset records views as `front` / `top` / `wrist`. During SmolVLA training they are renamed to `camera1` / `camera2` / `camera3`. At inference you should keep the **physical** names on the robot and pass the same `rename_map`. | Physical camera | Mount / role | Policy feature after rename | | --- | --- | --- | | `front` | Front-facing view of the workspace (Astra) | `observation.images.camera1` | | `top` | Top-down / overhead view (Astra) | `observation.images.camera2` | | `wrist` | Wrist / gripper camera | `observation.images.camera3` | ```json { "observation.images.front": "observation.images.camera1", "observation.images.top": "observation.images.camera2", "observation.images.wrist": "observation.images.camera3" } ``` --- ## Inputs & Outputs The policy consumes these observation features and produces these action features. **Inputs** | Feature | Physical source | Type | Shape | | --- | --- | --- | --- | | `observation.state` | Joint state | STATE | `(6,)` | | `observation.images.camera1` | `front` | VISUAL | `(3, 256, 256)` | | `observation.images.camera2` | `top` | VISUAL | `(3, 256, 256)` | | `observation.images.camera3` | `wrist` | VISUAL | `(3, 256, 256)` | **Outputs** | Feature | Type | Shape | | --- | --- | --- | | `action` | ACTION | `(6,)` | --- ## Training Dataset - **Repository:** [io-intelligence/so101_stack_cups](https://huggingface.co/datasets/io-intelligence/so101_stack_cups) - **Episodes:** 660 - **Frames:** 188035 - **Frame rate:** 30 FPS - **Task(s):** "Stack the cups" ## Training Configuration | Setting | Value | | --- | --- | | Training steps | 30000 | | Batch size | 8 | | Optimizer | adamw | | Learning rate | 0.0001 | | Seed | 1000 | | LeRobot version | 0.6.1 | --- ## How to Get Started with the Model New to LeRobot? These guides cover the full workflow: - **[Install LeRobot](https://huggingface.co/docs/lerobot/main/en/installation)** — set up the `lerobot` package. - **[Hardware setup](https://huggingface.co/docs/lerobot/main/en/hardware_guide)** — assemble, wire, and calibrate your robot and cameras. - **[Record data & train a policy](https://huggingface.co/docs/lerobot/en/il_robots)** — the end-to-end imitation-learning walkthrough. - **[CLI cheat-sheet](https://huggingface.co/docs/lerobot/main/en/cheat-sheet)** — quick reference for the `lerobot-*` commands. ### Run the policy on your robot Use physical camera keys `front` / `top` / `wrist`, then apply the rename map so they match the policy's `camera1` / `camera2` / `camera3` features. SmolVLA works best with RTC inference. ```bash lerobot-rollout \ --strategy.type=base \ --robot.type=so101_follower \ --robot.port= \ --robot.cameras="{ \ front: {type: opencv, index_or_path: , width: 640, height: 480, fps: 30}, \ top: {type: opencv, index_or_path: , width: 640, height: 480, fps: 30}, \ wrist: {type: opencv, index_or_path: , width: 640, height: 480, fps: 30} \ }" \ --policy.path=io-intelligence/smolvla_so101_stack_cups \ --rename_map='{"observation.images.front":"observation.images.camera1","observation.images.top":"observation.images.camera2","observation.images.wrist":"observation.images.camera3"}' \ --inference.type=rtc \ --task="Stack the cups" \ --duration=60 ``` Replace `` and the three camera device paths with your machine values. Camera **names** must stay `front` / `top` / `wrist` (not `camera1/2/3` on the robot side). When `--strategy.type=base` is used the script doesn't record episodes. Set `--duration=0` (or omit duration depending on your CLI) to run until Ctrl+C. For more information see the [rollout / inference docs](https://huggingface.co/docs/lerobot/main/en/inference). ### Train your own policy This policy type is usually fine-tuned from the pretrained base model [lerobot/smolvla_base](https://huggingface.co/lerobot/smolvla_base): ```bash lerobot-train \ --dataset.repo_id=${HF_USER}/ \ --policy.path=lerobot/smolvla_base \ --output_dir=outputs/train/ \ --job_name=lerobot_training \ --policy.device=cuda \ --policy.repo_id=${HF_USER}/ \ --wandb.enable=true ``` _Writes checkpoints to `outputs/train//checkpoints/`._ --- ## Evaluation Real-robot inference demo of stacking cups is included as [`inference_demo.mp4`](https://huggingface.co/io-intelligence/smolvla_so101_stack_cups/resolve/main/inference_demo.mp4) (copied from the [training dataset](https://huggingface.co/datasets/io-intelligence/so101_stack_cups) root). | Task | Notes | | ---- | ----- | | Stack the cups | Qualitative success demo on SO-101 (see video above) | --- ## Citation If you use this policy, please cite the method linked in the description above, along with LeRobot: ```bibtex @misc{cadene2024lerobot, 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}, title = {LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch}, howpublished = "\url{https://github.com/huggingface/lerobot}", year = {2024} } ```