SAVRN
Search Contact SAVRN

Open-weight model · Robotics

openvla-oft-libero

by Jiaming Tang Sakits/openvla-oft-libero

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Spatial, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success.

Parameters7.5B
Context2,048
Weights15.1 GB
Licensemit
AccessOpen weights
Monthly Downloads3k

Runs On

What it takes to serve openvla-oft-libero (7.5B 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 15.1 GB 18.1 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 7.5 GB 9.0 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 3.8 GB 4.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 Jiaming Tang, published under mit, revision 34480c54af80.

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Spatial, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Read Jiaming Tang's full model card

Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Spatial, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques.

Project Page: https://openvla-oft.github.io/

Code: https://github.com/openvla-oft/openvla-oft

See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?search_models=oft

Quick Start

This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

import pickle
from experiments.robot.libero.run_libero_eval import GenerateConfig
from experiments.robot.openvla_utils import get_action_head, get_processor, get_proprio_projector, get_vla, get_vla_action
from prismatic.vla.constants import NUM_ACTIONS_CHUNK, PROPRIO_DIM

# Instantiate config (see class GenerateConfig in experiments/robot/libero/run_libero_eval.py for definitions)
cfg = GenerateConfig(
    pretrained_checkpoint = "moojink/openvla-7b-oft-finetuned-libero-spatial",
    use_l1_regression = True,
    use_diffusion = False,
    use_film = False,
    num_images_in_input = 2,
    use_proprio = True,
    load_in_8bit = False,
    load_in_4bit = False,
    center_crop = True,
    num_open_loop_steps = NUM_ACTIONS_CHUNK,
    unnorm_key = "libero_spatial_no_noops",
)

# Load OpenVLA-OFT policy and inputs processor
vla = get_vla(cfg)
processor = get_processor(cfg)

# Load MLP action head to generate continuous actions (via L1 regression)
action_head = get_action_head(cfg, llm_dim=vla.llm_dim)

# Load proprio projector to map proprio to language embedding space
proprio_projector = get_proprio_projector(cfg, llm_dim=vla.llm_dim, proprio_dim=PROPRIO_DIM)

# Load sample observation:
#   observation (dict): {
#     "full_image": primary third-person image,
#     "wrist_image": wrist-mounted camera image,
#     "state": robot proprioceptive state,
#     "task_description": task description,
#   }
with open("experiments/robot/libero/sample_libero_spatial_observation.pkl", "rb") as file:
    observation = pickle.load(file)

# Generate robot action chunk (sequence of future actions)
actions = get_vla_action(cfg, vla, processor, observation, observation["task_description"], action_head, proprio_projector)
print("Generated action chunk:")
for act in actions:
    print(act)

Citation

@article{kim2025fine,
  title={Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success},
  author={Kim, Moo Jin and Finn, Chelsea and Liang, Percy},
  journal={arXiv preprint arXiv:2502.19645},
  year={2025}
}

Configuration

Architecture
OpenVLAForActionPrediction
Context length (tokens)
2,048
Layers
32
Hidden size
4,096
Feed-forward size
11,008
Attention heads
32
Key/value heads
32
Head dimension
128
Vocabulary size
32,000
RoPE base
10000
Model type
openvla_oft

Identity and Version

Repository
Sakits/openvla-oft-libero
Publisher
Jiaming Tang
Task
Robotics
Modality
Control
Library
transformers
Parameters
7.5B parameters
Languages
Not stated by the source
Revision
34480c54af802fd7573779494f37f9f1f360b3f5
First published
2026-06-09
Last updated
2026-06-20

Files and Weights

20 files, 15.1 GB in total. The weights are 4 files totalling 15.1 GB in safetensors.

Weights4 files · 15.1 GB
Configuration11 files · 172.5 KB
Tokenizer3 files · 2.3 MB
Documentation1 file · 2.9 KB
Repository1 file · 726 B
Every file
FileTypeSizeSHA-256
model-00001-of-00004.safetensorsWeights4.9 GB 77d2f5496808
model-00002-of-00004.safetensorsWeights4.9 GB 04b74ec7b249
model-00003-of-00004.safetensorsWeights4.9 GB 3cbbc70b6ffb
model-00004-of-00004.safetensorsWeights262.7 MB 2a11e7a41fbd
added_tokens.jsonConfiguration21 B
config.jsonConfiguration6.3 KB
configuration_prismatic.pyConfiguration5.9 KB
dataset_statistics.jsonConfiguration1.3 KB
generation_config.jsonConfiguration136 B
model.safetensors.index.jsonConfiguration94.8 KB
modeling_prismatic.pyConfiguration49.0 KB
preprocessor_config.jsonConfiguration1.6 KB
processing_prismatic.pyConfiguration12.7 KB
processor_config.jsonConfiguration130 B
special_tokens_map.jsonConfiguration552 B
README.mdDocumentation2.9 KB
.gitattributesRepository726 B
tokenizer.jsonTokenizer1.8 MB
tokenizer.modelTokenizer499.7 KB 9e556afd4421
tokenizer_config.jsonTokenizer1.2 KB

License and Download

License
mit
Access
Open weights, no gate
Download size
15.1 GB
Download from Jiaming Tang

Released by Jiaming Tang through its official repository on Hugging Face. Read the license.

Built From

Memory Requirements

PrecisionWeights in memory
As published15.1 GB
16-bit15.1 GB
8-bit7.5 GB
4-bit3.8 GB

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

Questions About openvla-oft-libero

How much GPU memory does openvla-oft-libero need?

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

What is the cheapest GPU to run openvla-oft-libero 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 openvla-oft-libero commercially?

Yes. openvla-oft-libero is released under MIT License. The MIT License is a short permissive license. It permits commercial use, modification and redistribution, provided the copyright notice and permission notice are included.

What is openvla-oft-libero's context length?

2,048 tokens, from the maximum position embeddings in its published configuration.

Similar Models

Model · Robotics

openvla-7b

OpenVLA Collaboration

OpenVLA 7B (openvla-7b) is an open vision-language-action model trained on 970K robot manipulation episodes from the Open X-Embodiment dataset. The model takes language instructions and camera images as input and generates robot actions. It supports controlling multiple robots out-of-the-box, and can be quickly adapted for new robot domains via (parameter-efficient) fine-tuning. All OpenVLA checkpoints, as well as our training codebase are released under an MIT License. For full details, please read our paper and see our project page. OpenVLA models take a language instruction and a camera image of a robot workspace as input, and predict (normalized) robot actions consisting of 7-DoF…

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Spatial, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Object, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Goal, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Long (also called LIBERO-10), as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint trained on 4 LIBERO task suites combined (-Spatial, -Object, -Goal, -Long), as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers