Views
No views yet
<robot_action_0> through <robot_action_2047>. It is intended as a
starting point for StarVLA frameworks that discretize robot actions as tokens;
it is not a trained robot policy.| Item | Value |
|---|---|
| Base model | Qwen/Qwen3-VL-4B-Instruct |
| Architecture | Qwen3VLForConditionalGeneration |
| Added action tokens | 2,048 |
| Action-token IDs | 151669–153716 in the packaged tokenizer |
| Inputs | Same text, image, and video inputs as the base Qwen3-VL model |
| Output | Language-model logits over the extended vocabulary |
| Robot action head | None |
| Robot checkpoint | None |
starVLA/model/modules/vlm/tools/add_qwen_special_tokens.1from transformers import AutoProcessor, Qwen3VLForConditionalGeneration
2
3repo_id = "StarVLA/Qwen3-VL-4B-Instruct-Action"
4processor = AutoProcessor.from_pretrained(repo_id)
5model = Qwen3VLForConditionalGeneration.from_pretrained(
6 repo_id,
7 torch_dtype="auto",
8 device_map="auto",
9)config.json verifies Qwen3VLForConditionalGeneration;
added_tokens.json verifies all 2,048 action-token entries.