Views
No views yet
1115_BEHAVIOR_rgp_dual_QwenDual_task6 run. The packaged config.yaml
describes a StarVLA QwenDual policy trained on task 6 of the
BEHAVIOR_rgp_dual mixture. The configured training target is 100,000 steps,
but the only weight file published here is the 40,000-step checkpoint.| Item | Published configuration |
|---|---|
| Framework | StarVLA QwenDual |
| VLM | Local training snapshot named Qwen3-VL-4B-Instruct; revision not recorded |
| Auxiliary visual encoder | dinov2_vits14 |
| Action model | 16-layer DiT-B flow head: 768 latent width, 12 heads (64 dimensions/head); state/action decoder MLP width 1,024 |
| Action / state dimension | 23 / 21 |
| Predicted action chunk | 50 steps |
| Image resolution | 224 x 224 |
| State input | Enabled |
| Dataset mixture / task | BEHAVIOR_rgp_dual, task_id: 6 |
| Normalization key | R1Pro |
| Uploaded checkpoint | checkpoints/steps_40000_pytorch_model.pt |
| Setting | Value in config.yaml |
|---|---|
| Intended maximum steps | 100,000 |
| Released step | 40,000 |
| Per-device VLA batch size | 32 |
| Gradient accumulation | 1 |
| Warm-up steps | 5,000 |
| Base / interface / action LR | 4e-5 / 1e-5 / 1e-4 |
| Optimizer | AdamW, betas (0.9, 0.95), epsilon 1e-8 |
| Scheduler | Cosine with minimum LR 1e-6 |
| VLA / VLM loss scale | 1.0 / 0.1 |
freeze_modules | Packaged boolean true; the public trainer expects module paths as a string, so this value names/selects no modules |
| Gradient checkpointing / mixed precision | Enabled / enabled |
| Seed | 42 |
summary.jsonl lists saved steps through 40K. It is a checkpoint index, not
an evaluation report.1config.yaml
2dataset_statistics.json
3summary.jsonl
4checkpoints/
5└── steps_40000_pytorch_model.ptconfig.yaml and dataset_statistics.json beside the checkpoint. The
StarVLA server uses them to reconstruct the model and apply the R1Pro
normalization contract.from_pretrained() directory.1huggingface-cli download StarVLA/1115_BEHAVIOR_rgp_dual_QwenDual_task6_40k \
2 --local-dir 1115_BEHAVIOR_rgp_dual_QwenDual_task6_40k
3
4export CKPT=$PWD/1115_BEHAVIOR_rgp_dual_QwenDual_task6_40k/checkpoints/steps_40000_pytorch_model.pt
5python deployment/model_server/server_policy.py \
6 --ckpt_path "$CKPT" \
7 --port 10093 \
8 --use_bf16