Lisette1231/20260425_flipbreadtopot3
Viewer • Updated • 1.41k • 42
How to use fbsh96/rebot_smolvla_flipbread_44eps_20260425_3000steps with LeRobot:
# See https://github.com/huggingface/lerobot?tab=readme-ov-file#installation for more details git clone https://github.com/huggingface/lerobot.git cd lerobot pip install -e .[smolvla]
# Launch finetuning on your dataset python lerobot/scripts/train.py \ --policy.path=fbsh96/rebot_smolvla_flipbread_44eps_20260425_3000steps \ --dataset.repo_id=lerobot/svla_so101_pickplace \ --batch_size=64 \ --steps=20000 \ --output_dir=outputs/train/my_smolvla \ --job_name=my_smolvla_training \ --policy.device=cuda \ --wandb.enable=true
# Run the policy using the record function
python -m lerobot.record \
--robot.type=so101_follower \
--robot.port=/dev/ttyACM0 \ # <- Use your port
--robot.id=my_blue_follower_arm \ # <- Use your robot id
--robot.cameras="{ front: {type: opencv, index_or_path: 8, width: 640, height: 480, fps: 30}}" \ # <- Use your cameras
--dataset.single_task="Grasp a lego block and put it in the bin." \ # <- Use the same task description you used in your dataset recording
--dataset.repo_id=HF_USER/dataset_name \ # <- This will be the dataset name on HF Hub
--dataset.episode_time_s=50 \
--dataset.num_episodes=10 \
--policy.path=fbsh96/rebot_smolvla_flipbread_44eps_20260425_3000stepsSmolVLA checkpoint fine-tuned for seeed_b601_dm_follower on merged LeRobot flip-bread-to-pot demonstrations collected on 2026-04-25.
observation.state: 7Dobservation.images.front: (3, 480, 640)observation.images.wrist: (3, 480, 640)action: 7D50 x 7Joint/action order:
shoulder_pan.pos
shoulder_lift.pos
elbow_flex.pos
wrist_flex.pos
wrist_yaw.pos
wrist_roll.pos
gripper.pos
Base checkpoint:
/root/work/drtc-Phi/outputs/train/rebot_smolvla_flipbread_overfit_20260425_1000steps/checkpoints/001000/pretrained_model
Merged dataset:
phi-media-lab/rebot_flipbreadtopot_20260425_44eps
44 episodes, 18426 frames, 30 FPS
Training command summary:
lerobot-train --policy.path=outputs/train/rebot_smolvla_flipbread_overfit_20260425_1000steps/checkpoints/001000/pretrained_model --policy.push_to_hub=false --dataset.repo_id=phi-media-lab/rebot_flipbreadtopot_20260425_44eps --dataset.video_backend=pyav --batch_size=8 --steps=3000 --eval_freq=0 --save_freq=1000 --log_freq=50 --num_workers=4 --wandb.enable=false
Final logged loss: about 0.049.
The checkpoint reloads with SmolVLAPolicy.from_pretrained(...) and outputs (1, 50, 7) action chunks.
Observed L20 latency:
535 ms151-153 ms/chunkThis is a reBot-native overfit validation model, not a certified autonomous control policy. Before real actuator execution, use logging-only validation, clipping, rate limits, joint limits, and emergency stop handling.