SAVRN
Search Contact SAVRN

Open-weight model · Robotics

openvla-7b-oft-finetuned-libero-spatial

by Moo Jin Kim moojink/openvla-7b-oft-finetuned-libero-spatial

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
Context
Weights15.9 GB
Licensemit
AccessOpen weights
Monthly Downloads14.2k

Runs On

What it takes to serve openvla-7b-oft-finetuned-libero-spatial (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 Moo Jin Kim, published under mit, revision 6d0231af0e48.

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 Moo Jin Kim'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
Vocabulary size
32,064
Stored precision
bfloat16
Model type
openvla

Identity and Version

Repository
moojink/openvla-7b-oft-finetuned-libero-spatial
Publisher
Moo Jin Kim
Task
Robotics
Modality
Control
Library
transformers
Parameters
7.5B parameters
Languages
Not stated by the source
Revision
6d0231af0e48c5985f1ff86908f4674b84bc049b
First published
2025-02-25
Last updated
2025-06-17

Files and Weights

25 files, 15.9 GB in total. The weights are 7 files totalling 15.9 GB in pt, safetensors.

Weights7 files · 15.9 GB
Configuration12 files · 229.3 KB
Tokenizer3 files · 2.3 MB
Documentation2 files · 7.9 KB
Repository1 file · 674 B
Every file
FileTypeSizeSHA-256
action_head--150000_checkpoint.ptWeights302.2 MB 809858636cf0
lora_adapter/adapter_model.safetensorsWeights484.5 MB 4bd2e808805f
model-00001-of-00004.safetensorsWeights4.9 GB 2809bd7be942
model-00002-of-00004.safetensorsWeights4.9 GB a00a7c5f2b65
model-00003-of-00004.safetensorsWeights4.9 GB a894b7230a08
model-00004-of-00004.safetensorsWeights262.7 MB a877e3fece1f
proprio_projector--150000_checkpoint.ptWeights67.3 MB 438d28e81e12
added_tokens.jsonConfiguration21 B
config.jsonConfiguration60.7 KB
configuration_prismatic.pyConfiguration5.9 KB
dataset_statistics.jsonConfiguration3.0 KB
generation_config.jsonConfiguration136 B
lora_adapter/adapter_config.jsonConfiguration813 B 30462bf80222
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
lora_adapter/README.mdDocumentation5.0 KB 1acb533904cd
.gitattributesRepository674 B
tokenizer.jsonTokenizer1.8 MB
tokenizer.modelTokenizer499.7 KB
tokenizer_config.jsonTokenizer1.2 KB

License and Download

License
mit
Access
Open weights, no gate
Download size
15.9 GB
Download from Moo Jin Kim

Released by Moo Jin Kim through its official repository on Hugging Face. Read the license.

Built From

Memory Requirements

PrecisionWeights in memory
As published15.9 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-7b-oft-finetuned-libero-spatial

How much GPU memory does openvla-7b-oft-finetuned-libero-spatial 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-7b-oft-finetuned-libero-spatial 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-7b-oft-finetuned-libero-spatial commercially?

Yes. openvla-7b-oft-finetuned-libero-spatial 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.

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

Model · Robotics

openvla-oft-libero

Jiaming Tang

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 2,048 tokens 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