futurefantasy commited on
Commit
4d790be
·
verified ·
1 Parent(s): d442ee8

Update model card and quick start docs

Browse files
Files changed (1) hide show
  1. README.md +25 -34
README.md CHANGED
@@ -9,38 +9,31 @@ tags:
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(
@@ -50,23 +43,21 @@ model = AutoModelForImageTextToText.from_pretrained(
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.
 
9
  - progress-estimation
10
  ---
11
 
12
+ # VLAC2-Qwen3VL-30B-A3B-Progress
13
 
14
+ VLAC2-Qwen3VL-30B-A3B-Progress is a video-language progress estimation model for robotic manipulation. Given a task description and a video, it predicts time-progress keypoints that can be aligned into a dense progress curve.
15
 
16
+ This release contains the inference-ready model weights, tokenizer and processor files, three bundled demo episodes, and a minimal local inference example.
17
 
18
+ ## Model
 
 
 
 
 
19
 
20
+ - Base model: `Qwen/Qwen3-VL-30B-A3B-Instruct`
21
+ - Architecture: `Qwen3VLMoeForConditionalGeneration`
22
+ - Recommended VLAC model type in local evaluation scripts: `qwen3_moe_vl`
23
+ - Bundled quick start uses the `chunk_all` prompt and samples the input video at `2 Hz`
 
 
24
 
25
+ ## Highlights
26
 
27
+ - Progress estimation for long-horizon manipulation videos
28
+ - Rollback and regression recognition in non-expert trajectories
29
+ - Bundled demos for both expert and non-expert episodes
30
 
31
+ ## Use with Transformers
32
 
33
  ```python
34
  from transformers import AutoModelForImageTextToText, AutoProcessor
35
 
36
+ model_id = "InternRobotics/VLAC2-Qwen3VL-30B-A3B-Progress"
37
 
38
  processor = AutoProcessor.from_pretrained(model_id)
39
  model = AutoModelForImageTextToText.from_pretrained(
 
43
  )
44
  ```
45
 
46
+ ## Quick Start
47
 
48
+ Run one of the bundled examples from the model release root:
49
 
50
  ```bash
51
+ python quick_start/run_example.py --example-id example_01
52
+ python quick_start/run_example.py --example-id example_02
53
+ python quick_start/run_example.py --example-id example_03
54
  ```
55
 
56
+ For local VLAC benchmark scripts, use:
57
 
58
+ ```bash
59
+ MODEL_PATH=/path/to/VLAC2-Qwen3VL-30B-A3B-Progress
60
+ MODEL_TYPE=qwen3_moe_vl
61
+ ```
 
62
 
63
+ More details are provided in `quick_start/README.md`.