OpenVLA: An Open-Source Vision-Language-Action Model
Paper • 2406.09246 • Published • 47
How to use openvla/openvla-7b-finetuned-libero-object with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-text-to-text", model="openvla/openvla-7b-finetuned-libero-object", trust_remote_code=True) # Load model directly
from transformers import AutoModelForVision2Seq
model = AutoModelForVision2Seq.from_pretrained("openvla/openvla-7b-finetuned-libero-object", trust_remote_code=True, dtype="auto")How to use openvla/openvla-7b-finetuned-libero-object with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "openvla/openvla-7b-finetuned-libero-object"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "openvla/openvla-7b-finetuned-libero-object",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/openvla/openvla-7b-finetuned-libero-object
How to use openvla/openvla-7b-finetuned-libero-object with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "openvla/openvla-7b-finetuned-libero-object" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "openvla/openvla-7b-finetuned-libero-object",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "openvla/openvla-7b-finetuned-libero-object" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "openvla/openvla-7b-finetuned-libero-object",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use openvla/openvla-7b-finetuned-libero-object with Docker Model Runner:
docker model run hf.co/openvla/openvla-7b-finetuned-libero-object
This model was produced by fine-tuning the OpenVLA 7B model via LoRA (r=32) on the LIBERO-Object dataset from the LIBERO simulation benchmark. We made a few modifications to the training dataset to improve final performance (see the OpenVLA paper for details).
Below are the hyperparameters we used for all LIBERO experiments:
use_lora == True, lora_rank == 32, lora_dropout == 0.0grad_accumulation_steps == 1)shuffle_buffer_size == 100_000See the OpenVLA GitHub README for instructions on how to run and evaluate this model in the LIBERO simulator.
BibTeX:
@article{kim24openvla,
title={OpenVLA: An Open-Source Vision-Language-Action Model},
author={{Moo Jin} Kim and Karl Pertsch and Siddharth Karamcheti and Ted Xiao and Ashwin Balakrishna and Suraj Nair and Rafael Rafailov and Ethan Foster and Grace Lam and Pannag Sanketi and Quan Vuong and Thomas Kollar and Benjamin Burchfiel and Russ Tedrake and Dorsa Sadigh and Sergey Levine and Percy Liang and Chelsea Finn},
journal = {arXiv preprint arXiv:2406.09246},
year={2024}
}