Views
No views yet
QwenGR00T-framework checkpoint that uses
Florence-2-large through StarVLA's Florence interface and a GR00T-style
flow-matching action head. It was co-trained with the bridge_rt_1 robot-data
mixture and an auxiliary VLM dataset mixture.| Item | Value |
|---|---|
| StarVLA framework | QwenGR00T with the Florence-2 interface selected by base_vlm |
| Visual-language backbone | microsoft/Florence-2-large |
| Action head | 16-layer DiT-B flow head: 768 latent width, 12 heads (64 dimensions/head); state/action decoder MLP width 1,024 |
| Robot-data mixture | bridge_rt_1 |
| Action representation | 7D delta_ee |
| Configured state dimension | 7 |
| Action horizon | 16 |
| Camera input | One image_0 RGB view, resized to 224 × 224 |
| Inference flow steps | 4 |
| Released checkpoint | checkpoints/steps_10000_pytorch_model.pt |
config.yaml records:| Setting | Value |
|---|---|
| Configured maximum steps | 100,000 |
| Save interval | 10,000 |
| VLA per-device batch | 8 |
| Auxiliary VLM per-device batch | 4 |
| Gradient accumulation | 1 |
| Warm-up | 5,000 steps |
| Base / interface / action LR | 3e-5 / 1e-5 / 1e-4 |
| Training flow repeats | 4 in the public run-era QwenGR00T path; YAML action-model value 8 is not read there |
| VLA / auxiliary 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 |
| Seed | 42 |
dinov2_vits14 field, but the selected
QwenGR00T/Florence path does not construct DINO or Q-Former. It contains an
environment-local Florence path. Map
framework.qwenvl.base_vlm to microsoft/Florence-2-large or an equivalent
local snapshot before loading.| Training Steps | PutCarrotOnPlateInScene | PutEggplantInBasketScene | PutSpoonOnTableClothInScene | StackGreenCubeOnYellowCubeBakedTexInScene | Average Across Tasks |
|---|---|---|---|---|---|
| 10,000 | 0.2083 | 0.8750 | 0.8750 | 0.0417 | 0.5000 |
| 20,000 | 0.4063 | 0.6146 | 0.6979 | 0.1354 | 0.4635 |
| 30,000 | 0.4896 | 0.7813 | 0.3854 | 0.1771 | 0.4583 |
| 40,000 | 0.4688 | 0.7500 | 0.3854 | 0.1458 | 0.4375 |
| 50,000 | 0.3750 | 0.5521 | 0.5000 | 0.0938 | 0.3802 |
| 60,000 | 0.3646 | 0.6042 | 0.4583 | 0.1042 | 0.3828 |
| 70,000 | 0.3958 | 0.7813 | 0.4688 | 0.1250 | 0.4427 |
| 80,000 | 0.4271 | 0.8125 | 0.5208 | 0.0521 | 0.4531 |
| 90,000 | 0.4063 | 0.5313 | 0.5833 | 0.1250 | 0.4115 |
| 100,000 | 0.4479 | 0.5938 | 0.7500 | 0.1042 | 0.4740 |
1huggingface-cli download StarVLA/Florence-GR00T-Bridge-RT-1 \
2 --local-dir Florence-GR00T-Bridge-RT-1
3
4CKPT="$PWD/Florence-GR00T-Bridge-RT-1/checkpoints/steps_10000_pytorch_model.pt"
5python deployment/model_server/server_policy.py \
6 --ckpt_path "$CKPT" --port 6678 --use_bf16 \
7 --config_override framework.qwenvl.base_vlm=microsoft/Florence-2-largeconfig.yaml and the Hub file tree.from_pretrained() policy.