futurefantasy commited on
Commit
cdc48c3
·
verified ·
1 Parent(s): 1b1d16d

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ pipeline_tag: image-text-to-text
4
+ base_model: Qwen/Qwen3-VL-30B-A3B-Instruct
5
+ tags:
6
+ - robotics
7
+ - video-understanding
8
+ - multimodal
9
+ - progress-estimation
10
+ ---
11
+
12
+ # VLAC2 Qwen3-VL 30B A3B Progress
13
+
14
+ This repository contains the inference-ready VLAC2 model weights staged from the current formal checkpoint `checkpoint-2315_ver5_vlac311_formal_v2-20260512-111948`.
15
+
16
+ ## What Is Included
17
+
18
+ - Full finetuned model weights in `safetensors` shard format
19
+ - Tokenizer files
20
+ - Image and video processor configs
21
+ - Chat template used by the exported checkpoint
22
+ - `examples/` with `3` bundled demo videos
23
+ - `quick_start/` with one minimal inference script
24
+
25
+ ## What Is Excluded
26
+
27
+ - DeepSpeed optimizer states
28
+ - `global_step*` recovery directories
29
+ - RNG snapshots
30
+ - Trainer logs and internal resume artifacts
31
+
32
+ ## Base Model
33
+
34
+ - Base checkpoint: `Qwen/Qwen3-VL-30B-A3B-Instruct`
35
+ - Exported architecture: `Qwen3VLMoeForConditionalGeneration`
36
+ - Recommended VLAC model type in local evaluation scripts: `qwen3_moe_vl`
37
+
38
+ ## Suggested Loading
39
+
40
+ ```python
41
+ from transformers import AutoModelForImageTextToText, AutoProcessor
42
+
43
+ model_id = "YOUR_ORG/VLAC2-Qwen3VL-30B-A3B-Progress"
44
+
45
+ processor = AutoProcessor.from_pretrained(model_id)
46
+ model = AutoModelForImageTextToText.from_pretrained(
47
+ model_id,
48
+ torch_dtype="auto",
49
+ device_map="auto",
50
+ )
51
+ ```
52
+
53
+ ## Local VLAC Evaluation
54
+
55
+ Use this staged model repo with the existing benchmark scripts by passing:
56
+
57
+ ```bash
58
+ MODEL_PATH=/path/to/VLAC2-Qwen3VL-30B-A3B-Progress
59
+ MODEL_TYPE=qwen3_moe_vl
60
+ ```
61
+
62
+ ## Bundled Demo
63
+
64
+ - examples: `examples/`
65
+ - quick start: `quick_start/README.md`
66
+ - simple runner: `quick_start/run_example.py`
67
+
68
+ ## Notes Before Public Release
69
+
70
+ - Fill in the final license.
71
+ - Add the final citation and dataset repo link.
72
+ - If you publish the benchmark separately, link it here via the model card metadata.