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

Update model card and quick start docs

Browse files
Files changed (1) hide show
  1. quick_start/README.md +13 -4
quick_start/README.md CHANGED
@@ -1,12 +1,19 @@
1
  # Quick Start
2
 
3
  This quick start runs the released VLAC model on one bundled example video with the `chunk_all` prompt.
4
- The bundled `mp4` is sampled on the fly into a fixed `2hz` frame list, then the predicted progress points are aligned to the benchmark dense GT curve for full-trajectory comparison.
5
 
6
  ## Requirements
7
 
8
- - environment: `swift-vlac311-vllm011`
9
- - hardware: at least `1` GPU with enough memory for this `30B` VLAC checkpoint
 
 
 
 
 
 
 
10
 
11
  ## Run
12
 
@@ -38,10 +45,12 @@ Each output file contains one JSONL row with:
38
 
39
  - example id
40
  - task metadata
41
- - `2hz` sampled input frame indices and timestamps
42
  - chunk_all prompt text
43
  - raw model response
44
  - parsed predicted key points: `时间 / 进度`
45
  - benchmark dense GT progress and semantic anchors
46
  - predicted dense curve aligned to the GT timeline
47
  - full-curve comparison metrics and an optional comparison plot path
 
 
 
1
  # Quick Start
2
 
3
  This quick start runs the released VLAC model on one bundled example video with the `chunk_all` prompt.
4
+ The bundled `mp4` is sampled on the fly into a fixed `2 Hz` frame list, then the predicted progress points are aligned to the bundled dense GT curve for full-trajectory comparison.
5
 
6
  ## Requirements
7
 
8
+ - `python >= 3.10`
9
+ - `torch`
10
+ - `transformers >= 4.57`
11
+ - `ms-swift`
12
+ - `decord`
13
+ - `numpy`
14
+ - `Pillow`
15
+ - `matplotlib` optional, only for automatic curve plots
16
+ - at least `1` GPU with enough memory for this `30B` checkpoint
17
 
18
  ## Run
19
 
 
45
 
46
  - example id
47
  - task metadata
48
+ - `2 Hz` sampled input frame indices and timestamps
49
  - chunk_all prompt text
50
  - raw model response
51
  - parsed predicted key points: `时间 / 进度`
52
  - benchmark dense GT progress and semantic anchors
53
  - predicted dense curve aligned to the GT timeline
54
  - full-curve comparison metrics and an optional comparison plot path
55
+
56
+ If `matplotlib` is unavailable, the JSONL output is still written and only the comparison plot is skipped.