Instructions to use wjstx/pick_tube_05_tactile_decoder_deploy with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LeRobot
How to use wjstx/pick_tube_05_tactile_decoder_deploy 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=wjstx/pick_tube_05_tactile_decoder_deploy \ --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=wjstx/pick_tube_05_tactile_decoder_deploy - Notebooks
- Google Colab
- Kaggle
Pick Tube 05 Direct Tactile Action Decoder
Private deployment payload for the VB3 direct tactile action decoder ablation.
The runtime composes:
- frozen
lerobot/smolvla_baseat revisionc83c3163b8ca9b7e67c509fffd9121e66cb96205; - frozen
KaiyueChen/pick_tube_01PEFT adapter at revisionc2bb4296cf7405ac3c0ad89e6f577fa620a660a6; - frozen converted tactile ResNet18;
- formal
action_tactiledirect Transformer decoder.
The decoder predicts a physical-unit action chunk shaped [1, 20, 20] after
the saved action postprocessor. Four current-frame tactile RGB images are
required in this exact order:
observation.images.tactile_left_0observation.images.tactile_right_0observation.images.tactile_left_1observation.images.tactile_right_1
Layout
smolvla_base/: base config and full weights.smolvla_adapter/: PEFT adapter and saved pre/postprocessors.tactile_encoder/: converted encoder weight and parity manifest.decoder/best.pt: formal action+tactile checkpoint selected at epoch 3.tokenizer/: pinned SmolVLM2 tokenizer/processor assets.deployment_manifest.json: revisions, tensor contract, and key hashes.docs/NETWORK_STRUCTURE.md: complete architecture and evaluation protocol.
Training data, formal feature cache, optimizer state, smoke checkpoint, and action-only checkpoint are intentionally excluded.
This payload contains the required weights, but the VB3 real-robot client must
use the tactile decoder deployment integration on the ablation branch. The
offline evaluation does not establish real-robot safety or success.
Download
hf download wjstx/pick_tube_05_tactile_decoder_deploy \
--local-dir /home/ljl/assets/pick_tube_05_tactile_decoder_deploy