SAVRN
Search Contact SAVRN

Open-weight model · Robotics

train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0

by Mim Chess Vlas mim-chess-vlas/train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0

π₀.₅ (Pi05) is a Vision-Language-Action model from Physical Intelligence designed for open-world generalization: it evolves π₀ to generalize to entirely new environments and situations that were never seen during training.

Parameters4.1B
Context
Weights84.2 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads

Runs On

What it takes to serve train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0 (4.1B parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 8.3 GB 9.9 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 4.1 GB 5.0 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 2.1 GB 2.5 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By Mim Chess Vlas, published under apache-2.0, revision 27fc30d4c1df.

π₀.₅ (Pi05) is a Vision-Language-Action model from Physical Intelligence designed for open-world generalization: it evolves π₀ to generalize to entirely new environments and situations that were never seen during training. The LeRobot implementation is adapted from their open-source OpenPI repository. This policy has been trained and pushed to the Hub using LeRobot. Learn how to train and run it in the LeRobot pi05 guide, or browse the full documentation. The policy consumes these observation features and produces these action features. Inputs Outputs New to LeRobot? These guides cover the full workflow: - Install LeRobot — set up the lerobot package. - Hardware setup — assemble, wire, and…

Read Mim Chess Vlas's full model card

Model Card for pi05

π₀.₅ (Pi05) is a Vision-Language-Action model from Physical Intelligence designed for open-world generalization: it evolves π₀ to generalize to entirely new environments and situations that were never seen during training. The LeRobot implementation is adapted from their open-source OpenPI repository.

This policy has been trained and pushed to the Hub using LeRobot.

Learn how to train and run it in the LeRobot pi05 guide, or browse the full documentation.


Model Details

  • License: apache-2.0
  • Fine-tuned from: lerobot/pi05_base
  • Robot type: Panda
  • Cameras: agentview, robot0_eye_in_hand, robot0_eye_in_hand_2

Inputs & Outputs

The policy consumes these observation features and produces these action features.

Inputs

Feature Type Shape
observation.state STATE (9,)
observation.images.agentview VISUAL (3, 224, 224)
observation.images.robot0_eye_in_hand VISUAL (3, 224, 224)
observation.images.robot0_eye_in_hand_2 VISUAL (3, 224, 224)

Outputs

Feature Type Shape
action ACTION (7,)

Training Dataset

  • Repository: mim-chess-vlas/train_800_dense__bbox__blackout__sim__all_cameras__live
  • Episodes: 776
  • Frames: 207203
  • Frame rate: 20 FPS
  • Task(s): "Pick the jam and place it into the box", "Pick the cereal and place it into the box", "Pick the pear and place it into the box", "Pick the sweet potato and place it into the box", "Pick the scone and place it into the box", "Pick the boxed food and place it into the box", "Pick the can and place it into the box", "Pick the hamburger and place it into the box", "Pick the lemon and place it into the box", "Pick the squash and place it into the box", "Pick the cheese and place it into the box", "Pick the cup and place it into the box", "Pick the egg and place it into the box", "Pick the ham and place it into the box", "Pick the hot dog and place it into the box", "Pick the apple and place it into the box", "Pick the boxed drink and place it into the box", "Pick the bread and place it into the box", "Pick the candle and place it into the box", "Pick the chicken breast and place it into the box", "Pick the jar and place it into the box", "Pick the knife block and place it into the box", "Pick the kettle and place it into the box", "Pick the potato and place it into the box", "Pick the basket and place it into the box", "Pick the cake and place it into the box", "Pick the orange and place it into the box", "Pick the spice and place it into the box", "Pick the spray and place it into the box", "Pick the alcohol and place it into the box", "Pick the blender jug and place it into the box", "Pick the mushroom and place it into the box", "Pick the salt and pepper shaker and place it into the box", "Pick the tiered shelf and place it into the box", "Pick the condiment and place it into the box", "Pick the mango and place it into the box", "Pick the pitcher and place it into the box", "Pick the plant and place it into the box", "Pick the stool and place it into the box", "Pick the soap dispenser and place it into the box"

Training Configuration

Setting Value
Training steps 60000
Batch size 16
Optimizer adamw
Learning rate 5e-05
Seed 0
LeRobot version 0.6.0

How to Get Started with the Model

New to LeRobot? These guides cover the full workflow:

The short version to run and train this policy:

Run the policy on your robot

lerobot-rollout \
  --strategy.type=base \
  --robot.type=Panda \
  --robot.port=<your_robot_port> \
  --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}}" \
  --policy.path=mim-chess-vlas/train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0 \
  --task="Pick the jam and place it into the box" \
  --duration=60

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.

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.

Train your own policy

This policy type is usually fine-tuned from the pretrained base model lerobot/pi05_base:

lerobot-train \
  --dataset.repo_id=${HF_USER}/<dataset> \
  --policy.path=lerobot/pi05_base \
  --output_dir=outputs/train/<policy_repo_id> \
  --job_name=lerobot_training \
  --policy.device=cuda \
  --policy.repo_id=${HF_USER}/<policy_repo_id> \
  --wandb.enable=true

Writes checkpoints to outputs/train/<policy_repo_id>/checkpoints/.


Evaluation

No evaluation results have been provided for this policy yet.


Citation

If you use this policy, please cite the method linked in the description above, along with LeRobot:

@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}
}

Identity and Version

Repository
mim-chess-vlas/train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0
Publisher
Mim Chess Vlas
Task
Robotics
Modality
Control
Library
lerobot
Parameters
4.1B parameters
Languages
Not stated by the source
Revision
27fc30d4c1dfdfe6062348c0cf3f8f137b206b5f
First published
2026-09-18
Last updated
2026-09-18

Files and Weights

65 files, 84.2 GB in total. The weights are 27 files totalling 84.2 GB in safetensors.

Weights27 files · 84.2 GB
Configuration36 files · 119.3 KB
Documentation1 file · 8.2 KB
Repository1 file · 1.5 KB
Every file
FileTypeSizeSHA-256
checkpoints/001000/pretrained_model/model.safetensorsWeights9.4 GB 8f0b59bb2679
checkpoints/001000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/001000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/003000/pretrained_model/model.safetensorsWeights9.4 GB 536a1d59ed3a
checkpoints/003000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/003000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/005000/pretrained_model/model.safetensorsWeights9.4 GB 379b210e1d45
checkpoints/005000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/005000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/010000/pretrained_model/model.safetensorsWeights9.4 GB 6f69c1f41f10
checkpoints/010000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/010000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/015000/pretrained_model/model.safetensorsWeights9.4 GB c2941a0e2257
checkpoints/015000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/015000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/030000/pretrained_model/model.safetensorsWeights9.4 GB 34f226ed3896
checkpoints/030000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/030000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/045000/pretrained_model/model.safetensorsWeights9.4 GB 92da64963401
checkpoints/045000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/045000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/060000/pretrained_model/model.safetensorsWeights9.4 GB bbb4edeadb1c
checkpoints/060000/pretrained_model/policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/060000/pretrained_model/policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
model.safetensorsWeights9.4 GB bbb4edeadb1c
policy_postprocessor_step_0_unnormalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
policy_preprocessor_step_3_normalizer_processor.safetensorsWeights2.7 KB 2b7058a264e3
checkpoints/001000/pretrained_model/config.jsonConfiguration2.6 KB
checkpoints/001000/pretrained_model/policy_postprocessor.jsonConfiguration779 B
checkpoints/001000/pretrained_model/policy_preprocessor.jsonConfiguration2.1 KB
checkpoints/001000/pretrained_model/train_config.jsonConfiguration7.7 KB
checkpoints/003000/pretrained_model/config.jsonConfiguration2.6 KB
checkpoints/003000/pretrained_model/policy_postprocessor.jsonConfiguration779 B
checkpoints/003000/pretrained_model/policy_preprocessor.jsonConfiguration2.1 KB
checkpoints/003000/pretrained_model/train_config.jsonConfiguration7.7 KB
checkpoints/005000/pretrained_model/config.jsonConfiguration2.6 KB
checkpoints/005000/pretrained_model/policy_postprocessor.jsonConfiguration779 B
checkpoints/005000/pretrained_model/policy_preprocessor.jsonConfiguration2.1 KB
checkpoints/005000/pretrained_model/train_config.jsonConfiguration7.7 KB
checkpoints/010000/pretrained_model/config.jsonConfiguration2.6 KB
checkpoints/010000/pretrained_model/policy_postprocessor.jsonConfiguration779 B
checkpoints/010000/pretrained_model/policy_preprocessor.jsonConfiguration2.1 KB
checkpoints/010000/pretrained_model/train_config.jsonConfiguration7.7 KB
checkpoints/015000/pretrained_model/config.jsonConfiguration2.6 KB
checkpoints/015000/pretrained_model/policy_postprocessor.jsonConfiguration779 B
checkpoints/015000/pretrained_model/policy_preprocessor.jsonConfiguration2.1 KB
checkpoints/015000/pretrained_model/train_config.jsonConfiguration7.7 KB
checkpoints/030000/pretrained_model/config.jsonConfiguration2.6 KB
checkpoints/030000/pretrained_model/policy_postprocessor.jsonConfiguration779 B
checkpoints/030000/pretrained_model/policy_preprocessor.jsonConfiguration2.1 KB
checkpoints/030000/pretrained_model/train_config.jsonConfiguration7.7 KB
checkpoints/045000/pretrained_model/config.jsonConfiguration2.6 KB
checkpoints/045000/pretrained_model/policy_postprocessor.jsonConfiguration779 B
checkpoints/045000/pretrained_model/policy_preprocessor.jsonConfiguration2.1 KB
checkpoints/045000/pretrained_model/train_config.jsonConfiguration7.7 KB
checkpoints/060000/pretrained_model/config.jsonConfiguration2.6 KB
checkpoints/060000/pretrained_model/policy_postprocessor.jsonConfiguration779 B
checkpoints/060000/pretrained_model/policy_preprocessor.jsonConfiguration2.1 KB
checkpoints/060000/pretrained_model/train_config.jsonConfiguration7.7 KB
config.jsonConfiguration2.6 KB
policy_postprocessor.jsonConfiguration779 B
policy_preprocessor.jsonConfiguration2.1 KB
train_config.jsonConfiguration7.7 KB
README.mdDocumentation8.2 KB
.gitattributesRepository1.5 KB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
84.2 GB
Download from Mim Chess Vlas

Released by Mim Chess Vlas through its official repository on Hugging Face. Read the license.

Built From

  • Derived from lerobot/pi05_base
  • Trained on (disclosed) mim-chess-vlas/train_800_dense__bbox__blackout__sim__all_cameras__live

Memory Requirements

PrecisionWeights in memory
As published84.2 GB
16-bit8.3 GB
8-bit4.1 GB
4-bit2.1 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0

How much GPU memory does train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0 need?

About 9.9 GB at 16-bit and 2.5 GB at 4-bit: the weights (4.1B parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0 on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0 commercially?

Yes. train_800_dense__bbox__blackout__sim__all_cameras__live__pi05__seed_0 is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

Similar Models

Model · Robotics

unlv_vla_policy

Jinseok Kim

π₀.₅ (Pi05) is a Vision-Language-Action model from Physical Intelligence designed for open-world generalization: it evolves π₀ to generalize to entirely new environments and situations that were never seen during training. The LeRobot implementation is adapted from their open-source OpenPI repository. This policy has been trained and pushed to the Hub using LeRobot. Learn how to train and run it in the LeRobot pi05 guide, or browse the full documentation. The policy consumes these observation features and produces these action features. Inputs Outputs New to LeRobot? These guides cover the full workflow: - Install LeRobot — set up the lerobot package. - Hardware setup — assemble, wire, and…

Open weights apache-2.0 4.1B parameters lerobot

Final checkpoint after 60,000 optimization steps. This is a trained policy, not an evaluation result. Policy weights, policy configuration, preprocessing/postprocessing and normalization states are at the repository root. Training resume files are in trainingstate/. Host-specific paths were removed from JSON metadata; supply local dataset/output paths when resuming. The tokenizer reference points to google/paligemma-3b-pt-224 (training revision 35e4f46485b4d07967e7e9935bc3786aad50687c). For subtask models, supply the corresponding per-frame subtask as the policy task text. For 3-view models also supply the dataset-defined keyframe image. No real-robot evaluation metrics are claimed here.…

Open weights 4.1B parameters lerobot

Final checkpoint after 60,000 optimization steps. This is a trained policy, not an evaluation result. Policy weights, policy configuration, preprocessing/postprocessing and normalization states are at the repository root. Training resume files are in trainingstate/. Host-specific paths were removed from JSON metadata; supply local dataset/output paths when resuming. The tokenizer reference points to google/paligemma-3b-pt-224 (training revision 35e4f46485b4d07967e7e9935bc3786aad50687c). For subtask models, supply the corresponding per-frame subtask as the policy task text. For 3-view models also supply the dataset-defined keyframe image. No real-robot evaluation metrics are claimed here.…

Open weights 4.1B parameters lerobot

Model · Robotics

GigaBrain-0.7-3.5B-Base

GigaAI

Vision-language-action (VLA) models have become a dominant paradigm for generalist embodied agents, demonstrating strong complex and long-horizon task completion in structured settings. Yet it remains an open question whether current VLA systems can benefit from more effective architectural design, scale to substantially larger and more heterogeneous data regimes, and achieve broader generalization across tasks and embodiments. To this end, we present GigaBrain-0.7, an embodied foundation model with substantially improved generalization across diverse robot embodiments. Specifically, GigaBrain-0.7 unifies understanding, prediction, and action through a three-system architecture, scales…

Open weights apache-2.0 4.1B parameters diffusers

π₀.₅ is a Vision-Language-Action (VLA) model with open-world generalization from Physical Intelligence, co-trained on robot demonstrations and large-scale multimodal data to execute long-horizon tasks in unseen real-world environments. Checkpoint trained and evaluated on LIBERO tasks Note: This model currently supports only the flow-matching action head for π₀.₅ training and inference. Other components from the original work (e.g., subtask prediction, action tokenization, or RL) were not released upstream and are not included here, though the LeRobot team is actively working to support them. Original paper: π0.5: A Vision-Language-Action Model with Open-World Generalization For full…

Open weights gemma 3.6B parameters lerobot

Model · Robotics

pi05_base

LeRobot

π₀.₅ is a Vision-Language-Action (VLA) model with open-world generalization from Physical Intelligence, co-trained on robot demonstrations and large-scale multimodal data to execute long-horizon tasks in unseen real-world environments. Note: This model currently supports only the flow-matching action head for π₀.₅ training and inference. Other components from the original work (e.g., subtask prediction, action tokenization, or RL) were not released upstream and are not included here, though the LeRobot team is actively working to support them. Original paper: π0.5: A Vision-Language-Action Model with Open-World Generalization For full installation details (including optional video…

Open weights gemma 3.6B parameters lerobot