Reinforcement Learning
Transformers
English
robotics
vla
vision-language-action
openvla
omnivla
robot
qwen
dinov2
siglip
Instructions to use theguy21/openvla-micro with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use theguy21/openvla-micro with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("theguy21/openvla-micro", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 14,700 Bytes
dd9b4af 5da54d3 dd9b4af 5da54d3 dd9b4af bd89217 dd9b4af bd89217 dd9b4af bd89217 dd9b4af | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | """
OpenVLA-Micro: A small-vision VLA for CPU robot deployment.
===========================================================
Architecture: DINOv2-S (384-dim) + SigLIP-B/16 (768-dim)
β ShimMLPs (β 8704-dim each) β Concat β Linear(896) β GELU β Linear(896)
β Qwen2.5-0.5B LLM β 7-DoF action.
Trained by freezing DINOv2, SigLIP, Qwen2.5, and lm_head, and only training
the ShimMLPs + LoRA adapters on the projector (38.1M params).
This module provides a self-contained ``OpenVLAMicro`` class that loads the
merged checkpoint and runs ``predict_action(image, instruction)``.
"""
from __future__ import annotations
import json
from functools import partial
from pathlib import Path
from typing import Dict, List, Optional, Tuple, Union
import numpy as np
import timm
import torch
import torch.nn as nn
from PIL import Image
from timm.models.vision_transformer import VisionTransformer
from torchvision.transforms import Compose, Resize
from transformers import (
AutoConfig,
AutoModelForCausalLM,
AutoTokenizer,
PreTrainedModel,
Qwen2TokenizerFast,
)
from huggingface_hub import hf_hub_download
# ---------------------------------------------------------------------------
# Helpers
# ---------------------------------------------------------------------------
def unpack_tuple(fn):
def wrapper(*args, **kwargs):
result = fn(*args, **kwargs)
return result[0] if isinstance(result, tuple) else result
return wrapper
def monkey_patch_featurizer(vit: VisionTransformer) -> None:
"""Patch a TIMM ViT to return penultimate-layer patch features."""
vit.forward = unpack_tuple(
partial(vit.get_intermediate_layers, n={len(vit.blocks) - 2})
)
def _build_timm_transform(timm_path: str, img_size: int = 224) -> Compose:
"""Build a resize-to-224 image transform for a given TIMM model."""
model = timm.create_model(timm_path, pretrained=False, num_classes=0)
cfg = timm.data.resolve_model_data_config(model)
cfg["input_size"] = (3, img_size, img_size)
default = timm.data.create_transform(**cfg, is_training=False)
assert isinstance(default, Compose)
assert isinstance(default.transforms[0], Resize)
return Compose([
Resize((img_size, img_size), interpolation=default.transforms[0].interpolation),
*default.transforms[1:],
])
# ---------------------------------------------------------------------------
# Components
# ---------------------------------------------------------------------------
class ShimMLP(nn.Module):
"""Maps native vision dim (384 or 768) β 8704 (the original projector's intermediate dim)."""
def __init__(self, in_dim: int, hidden: int = 2048, out_dim: int = 8704):
super().__init__()
self.net = nn.Sequential(
nn.Linear(in_dim, hidden),
nn.GELU(),
nn.Linear(hidden, out_dim),
)
def forward(self, x: torch.Tensor) -> torch.Tensor:
return self.net(x)
class CombinedProjector(nn.Module):
"""
Splits the zero-padded vision-backbone output (458 tokens Γ 1152 dims),
runs per-backbone ShimMLPs, concatenates, then projects to LLM dim (896).
"""
def __init__(self, dino_mlp: ShimMLP, siglip_mlp: ShimMLP,
proj2: nn.Linear, proj4: nn.Linear):
super().__init__()
self.dino_mlp = dino_mlp
self.siglip_mlp = siglip_mlp
self.proj2 = proj2
self.proj4 = proj4
def forward(self, x: torch.Tensor) -> torch.Tensor:
dino_feats = x[:, :256, :384]
siglip_feats = x[:, 256:, :768]
dino_out = self.dino_mlp(dino_feats)
siglip_out = self.siglip_mlp(siglip_feats)
combined = torch.cat([dino_out, siglip_out], dim=1)
h = self.proj2(combined)
h = nn.functional.gelu(h)
h = self.proj4(h)
return h
# ---------------------------------------------------------------------------
# Vision Encoder
# ---------------------------------------------------------------------------
DINOSigLIP_REGISTRY = {
"dinosiglip-vit-s-b-224px": {
"dino": "vit_small_patch14_reg4_dinov2.lvd142m",
"siglip": "vit_base_patch16_siglip_224",
},
}
class DinoSigLIPEncoder(nn.Module):
"""
Loads DINOv2-S + SigLIP-B/16 from TIMM, runs both,
zero-pads each to 1152 dims, concatenates along sequence dim.
"""
def __init__(self, variant: str = "dinosiglip-vit-s-b-224px", img_size: int = 224):
super().__init__()
spec = DINOSigLIP_REGISTRY[variant]
self.dino_featurizer: VisionTransformer = timm.create_model(
spec["dino"], pretrained=True, num_classes=0, img_size=img_size
)
self.dino_featurizer.eval()
monkey_patch_featurizer(self.dino_featurizer)
self.siglip_featurizer: VisionTransformer = timm.create_model(
spec["siglip"], pretrained=True, num_classes=0, img_size=img_size
)
self.siglip_featurizer.eval()
monkey_patch_featurizer(self.siglip_featurizer)
self.dino_transform = _build_timm_transform(spec["dino"], img_size)
self.siglip_transform = _build_timm_transform(spec["siglip"], img_size)
self.total_embed_dim = (
self.dino_featurizer.embed_dim + self.siglip_featurizer.embed_dim
)
def forward(self, pixel_values: Dict[str, torch.Tensor]) -> torch.Tensor:
dino_out = self.dino_featurizer(pixel_values["dino"])
siglip_out = self.siglip_featurizer(pixel_values["siglip"])
if isinstance(dino_out, (list, tuple)):
dino_out = dino_out[0]
if isinstance(siglip_out, (list, tuple)):
siglip_out = siglip_out[0]
B, D_total = dino_out.shape[0], self.total_embed_dim
dino_padded = torch.zeros(
B, dino_out.shape[1], D_total, device=dino_out.device, dtype=dino_out.dtype
)
dino_padded[:, :, : dino_out.shape[-1]] = dino_out
siglip_padded = torch.zeros(
B, siglip_out.shape[1], D_total, device=siglip_out.device, dtype=siglip_out.dtype
)
siglip_padded[:, :, : siglip_out.shape[-1]] = siglip_out
return torch.cat([dino_padded, siglip_padded], dim=1)
def get_image_transform(self):
"""Return a callable that takes a PIL Image β dict of tensors."""
def transform(img: Image.Image) -> Dict[str, torch.Tensor]:
return {
"dino": self.dino_transform(img),
"siglip": self.siglip_transform(img),
}
return transform
# ---------------------------------------------------------------------------
# Action De-Tokenization
# ---------------------------------------------------------------------------
class ActionTokenizer:
"""Minimal action tokenizer: decodes token IDs β normalized continuous actions."""
def __init__(self, tokenizer, use_extra: bool = True):
self.tokenizer = tokenizer
self.n_bins = 256
self.min_action = -1
self.max_action = 1
self.bins = np.linspace(self.min_action, self.max_action, self.n_bins)
self.bin_centers = (self.bins[:-1] + self.bins[1:]) / 2.0
tokenizer_len = len(tokenizer) if use_extra else tokenizer.vocab_size
self.action_token_begin_idx = int(tokenizer_len - (self.n_bins + 1))
self.action_token_end_idx = int(tokenizer_len)
self.tokenizer_len = tokenizer_len
def decode_token_ids_to_actions(self, action_token_ids: np.ndarray) -> np.ndarray:
discretized = self.tokenizer_len - action_token_ids
discretized = np.clip(discretized - 1, a_min=0, a_max=self.bin_centers.shape[0] - 1)
return self.bin_centers[discretized]
def unnormalize_actions(
normalized_actions: np.ndarray, norm_stats: dict, unnorm_key: str
) -> np.ndarray:
stats = norm_stats[unnorm_key]["action"]
mask = stats.get("mask", np.ones_like(stats["q01"], dtype=bool))
high, low = np.array(stats["q99"]), np.array(stats["q01"])
return np.where(
mask,
0.5 * (normalized_actions + 1) * (high - low) + low,
normalized_actions,
)
# ---------------------------------------------------------------------------
# OpenVLA-Micro
# ---------------------------------------------------------------------------
class OpenVLAMicro(nn.Module):
"""
Self-contained OpenVLA-Micro model.
Usage::
model = OpenVLAMicro.from_pretrained("/path/to/openvla-micro-merged.pt")
model.to("cuda")
action = model.predict_action(pil_image, "pick up the red block")
"""
def __init__(
self,
vision_encoder: DinoSigLIPEncoder,
projector: CombinedProjector,
llm: PreTrainedModel,
tokenizer,
norm_stats: dict,
unnorm_key: str = "libero_90",
):
super().__init__()
self.vision_encoder = vision_encoder
self.projector = projector
self.llm = llm
self.tokenizer = tokenizer
self.norm_stats = norm_stats
self.unnorm_key = unnorm_key
self.action_dim = 7
self.image_transform = vision_encoder.get_image_transform()
self.action_tokenizer = ActionTokenizer(tokenizer, use_extra=True)
self.device = next(self.llm.parameters()).device
@classmethod
def _resolve_checkpoint_path(cls, checkpoint_path: Union[str, Path]) -> Path:
path = Path(checkpoint_path)
if path.exists():
return path
# Treat a non-path input as a Hugging Face repo ID and fetch the default artifact.
for filename in ("openvla-micro-distill.pt", "openvla-micro-merged.pt"):
try:
return Path(hf_hub_download(repo_id=str(checkpoint_path), filename=filename))
except Exception:
continue
raise FileNotFoundError(
f"Could not resolve checkpoint '{checkpoint_path}'. "
"Pass a local .pt file or a Hugging Face repo ID containing "
"'openvla-micro-merged.pt' or 'openvla-micro-distill.pt'."
)
@classmethod
def from_pretrained(cls, checkpoint_path: Union[str, Path], device: str = "cpu",
**kwargs):
checkpoint_path = cls._resolve_checkpoint_path(checkpoint_path)
ckpt = torch.load(checkpoint_path, map_location="cpu")
# --- Build vision encoder ---
vision_encoder = DinoSigLIPEncoder()
# --- Build projector ---
dino_mlp = ShimMLP(384)
siglip_mlp = ShimMLP(768)
proj2 = nn.Linear(8704, 896, bias=True)
proj4 = nn.Linear(896, 896, bias=True)
projector = CombinedProjector(dino_mlp, siglip_mlp, proj2, proj4)
# --- Build LLM ---
llm_id = "Qwen/Qwen2.5-0.5B"
config = AutoConfig.from_pretrained(llm_id)
config.use_flash_attention_2 = False
llm_kwargs = kwargs.pop("llm_kwargs", {})
llm_kwargs.setdefault("torch_dtype", torch.bfloat16)
llm = AutoModelForCausalLM.from_pretrained(
llm_id,
config=config,
**llm_kwargs,
)
# --- Tokenizer ---
tokenizer = AutoTokenizer.from_pretrained(llm_id, use_fast=True)
tokenizer.add_tokens([f"<|extra_{i}|>" for i in range(256)])
# --- Load weights ---
model_sd = ckpt["model"]
vision_encoder.load_state_dict(model_sd["vision_backbone"])
projector.load_state_dict(model_sd["projector"])
llm_raw_sd = model_sd["llm_backbone"]
llm_clean_sd = {k.replace("llm.", "", 1): v for k, v in llm_raw_sd.items()}
llm.load_state_dict(llm_clean_sd)
norm_stats = ckpt.get("norm_stats", {})
model = cls(vision_encoder, projector, llm, tokenizer, norm_stats)
return model.to(device)
def to(self, device):
self.device = device
return super().to(device)
def _build_prompt(self, instruction: str) -> str:
"""Match the prompt format used during training (QwenPromptBuilder, openvla family)."""
system = "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."
return (
f"<|im_start|>system\n{system}<|im_end|>\n"
f"<|im_start|>user\nWhat action should the robot take to {instruction.lower()}?<|im_end|>\n"
f"<|im_start|>assistant\n"
)
@torch.inference_mode()
def predict_action(
self,
image: Image.Image,
instruction: str,
unnorm_key: Optional[str] = None,
) -> np.ndarray:
"""Run inference: image + instruction β 7-DoF action (unnormalized)."""
if unnorm_key is None:
unnorm_key = self.unnorm_key
# --- Build prompt ---
prompt_text = self._build_prompt(instruction)
input_ids = self.tokenizer(prompt_text, return_tensors="pt").input_ids.to(self.device)
# --- Transform image ---
pixel_values = self.image_transform(image)
pixel_values = {k: v[None, ...].to(self.device) for k, v in pixel_values.items()}
# --- Encode vision ---
patch_features = self.vision_encoder(pixel_values)
projected_patches = self.projector(patch_features)
# Match LLM dtype (bfloat16) for mixed-precision compatibility
llm_dtype = self.llm.dtype
projected_patches = projected_patches.to(dtype=llm_dtype)
# --- Build multimodal input embeddings ---
input_embeds = self.llm.model.embed_tokens(input_ids)
multimodal_embeds = torch.cat(
[input_embeds[:, :1, :], projected_patches, input_embeds[:, 1:, :]], dim=1
)
# --- Auto-regressive decode 7 action tokens ---
past_key_values = None
generated_ids = []
outputs = self.llm(inputs_embeds=multimodal_embeds, use_cache=True, past_key_values=None)
next_token = outputs.logits[:, -1:, :].argmax(dim=-1)
generated_ids.append(next_token)
past_key_values = outputs.past_key_values
for _ in range(self.action_dim - 1):
outputs = self.llm(input_ids=next_token, use_cache=True, past_key_values=past_key_values)
next_token = outputs.logits[:, -1:, :].argmax(dim=-1)
generated_ids.append(next_token)
past_key_values = outputs.past_key_values
action_token_ids = torch.cat(generated_ids, dim=1)
# --- Decode to continuous actions ---
normalized = self.action_tokenizer.decode_token_ids_to_actions(
action_token_ids[0].cpu().numpy()
)
actions = unnormalize_actions(normalized, self.norm_stats, unnorm_key)
return actions
|