Views
No views yet
final_model/pytorch_model.pt — bf16 weights (whole model, self-contained)config.yaml / config.full.yaml / dataset_statistics.json — the run
layout StarVLA's policy_wrapper expects (config + stats one level above
the weights)starvla_files/ — drop-ins for your StarVLA checkout:
data_config.py → .../train_files/data_registry/ (registers the
unitree_g1_piston embodiment + unitree_g1_piston_pnp mixture this
checkpoint references)starvla_qwenoft_g1_piston_v2.yaml — the exact training configpolicy_norm_processor_PATCHED.py — required to serve this checkpoint:
upstream's PolicyNormProcessor crashes (Video key ego_view not found)
on any data config whose transform includes video augmentation, as this
one does. Replace deployment/model_server/policy_norm_processor.py.framework.qwenvl.base_vlm in config.yaml at your local
Qwen/Qwen3-VL-2B-Instruct (tokenizer/processor are loaded from there;
the fine-tuned weights come from this repo's .pt).action_mode: abs, image 224, color jitter
(0.3/0.4/0.5/0.08), effective batch 32 (micro-batch 8 × grad-accum 4),
10k steps, per-module LRs (backbone 2e-5 / VL interface 1e-5 / head 1e-4),
bnb PagedAdamW8bit, gradient checkpointing, no DeepSpeed (single GPU).include_state: false on purpose. With state enabled on a stationary
task, the model regresses actions from proprioception and ignores the
camera (looks converged, fails closed-loop). StarVLA has no state-dropout
to mitigate this — leave state off, or wire the dormant
StateActionDropout transform yourself.gradient_accumulation_steps > 1 with DeepSpeed in
train_starvla.py — the trainer steps the LR scheduler per micro-batch,
silently compressing your schedule. On a single GPU, drop DeepSpeed
entirely (ZeRO shards nothing across one rank) and accumulation via
ACCELERATE_GRADIENT_ACCUMULATION_STEPS works correctly.deployment/model_server/server_policy.py
(WebSocket, msgpack-numpy): request
{"examples": [{"image": [rgb_hwc_uint8], "lang": "pick up the piston."}], "unnorm_key": "new_embodiment"} → {"data": {"actions": [B, 30, 30]}},
absolute physical units.