Update dataset card with paper, project links, and citation

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +63 -31
README.md CHANGED
@@ -1,43 +1,45 @@
1
  ---
 
 
2
  license: apache-2.0
 
 
3
  task_categories:
4
- - video-text-to-text
5
- - visual-question-answering
6
- - image-text-to-text
7
- language:
8
- - en
9
  tags:
10
- - llava
11
- - multimodal
12
- - video
13
- - spatial-reasoning
14
- size_categories:
15
- - 10M<n<100M
16
  configs:
17
- - config_name: viewer_caption_30s
18
- data_files:
19
- - split: preview
20
- path: viewer/caption_30s.parquet
21
- - config_name: viewer_caption_60s
22
- data_files:
23
- - split: preview
24
- path: viewer/caption_60s.parquet
25
- - config_name: viewer_caption_180s
26
- data_files:
27
- - split: preview
28
- path: viewer/caption_180s.parquet
29
- - config_name: viewer_caption_gt10min
30
- data_files:
31
- - split: preview
32
- path: viewer/caption_gt10min.parquet
33
- - config_name: viewer_spatial
34
- data_files:
35
- - split: preview
36
- path: viewer/spatial.parquet
37
  ---
38
 
39
  # LLaVA-OneVision-2-Data
40
 
 
 
41
  Training data for the LLaVA-OneVision-2 multimodal model family, covering large-scale video and spatial reasoning corpora used in mid-training.
42
 
43
  ## Dataset Composition
@@ -63,3 +65,33 @@ The `viewer_*` configs above expose small Parquet samples so the Hugging Face Da
63
  - **`viewer_spatial`** — 10 spatial-reasoning samples with embedded thumbnail images, mixed across tasks (refcoco, visual genome, pointing, ca1m, osd, crosspoint, erqa, roborefer)
64
 
65
  These previews are intended for **schema inspection only**. For training, use the full `mid_training_video/` and `spatial/` shards.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: apache-2.0
5
+ size_categories:
6
+ - 10M<n<100M
7
  task_categories:
8
+ - image-text-to-text
9
+ - video-text-to-text
10
+ - visual-question-answering
 
 
11
  tags:
12
+ - llava
13
+ - multimodal
14
+ - video
15
+ - spatial-reasoning
 
 
16
  configs:
17
+ - config_name: viewer_caption_30s
18
+ data_files:
19
+ - split: preview
20
+ path: viewer/caption_30s.parquet
21
+ - config_name: viewer_caption_60s
22
+ data_files:
23
+ - split: preview
24
+ path: viewer/caption_60s.parquet
25
+ - config_name: viewer_caption_180s
26
+ data_files:
27
+ - split: preview
28
+ path: viewer/caption_180s.parquet
29
+ - config_name: viewer_caption_gt10min
30
+ data_files:
31
+ - split: preview
32
+ path: viewer/caption_gt10min.parquet
33
+ - config_name: viewer_spatial
34
+ data_files:
35
+ - split: preview
36
+ path: viewer/spatial.parquet
37
  ---
38
 
39
  # LLaVA-OneVision-2-Data
40
 
41
+ [**Project Page**](https://evolvinglmms-lab.github.io/LLaVA-OneVision-2/) | [**Paper**](https://huggingface.co/papers/2605.25979) | [**GitHub**](https://github.com/EvolvingLMMs-Lab/LLaVA-OneVision-2)
42
+
43
  Training data for the LLaVA-OneVision-2 multimodal model family, covering large-scale video and spatial reasoning corpora used in mid-training.
44
 
45
  ## Dataset Composition
 
65
  - **`viewer_spatial`** — 10 spatial-reasoning samples with embedded thumbnail images, mixed across tasks (refcoco, visual genome, pointing, ca1m, osd, crosspoint, erqa, roborefer)
66
 
67
  These previews are intended for **schema inspection only**. For training, use the full `mid_training_video/` and `spatial/` shards.
68
+
69
+ ## Sample Usage
70
+
71
+ You can download the dataset using the `huggingface-cli`:
72
+
73
+ ```bash
74
+ huggingface-cli download --repo-type dataset --resume-download \
75
+ --local-dir ./LLaVA-OneVision-2-Data \
76
+ mvp-lab/LLaVA-OneVision-2-Data
77
+ ```
78
+
79
+ ## Citation
80
+
81
+ If you find *LLaVA-OneVision-2* useful in your research, please consider citing the following papers:
82
+
83
+ ```bibtex
84
+ @inproceedings{LLaVA-OneVision-2,
85
+ title={LLaVA-OneVision-2},
86
+ author={llava-onevision contributors},
87
+ booktitle={arXiv},
88
+ year={2026}
89
+ }
90
+
91
+ @inproceedings{LLaVA-OneVision-1.5,
92
+ title={LLaVA-OneVision-1.5: Fully Open Framework for Democratized Multimodal Training},
93
+ author={An, Xiang and Xie, Yin and Yang, Kaicheng and Zhang, Wenkang and Zhao, Xiuwei and Cheng, Zheng and Wang, Yirui and Xu, Songcen and Chen, Changrui and Wu, Chunsheng and Tan, Huajie and Li, Chunyuan and Yang, Jing and Yu, Jie and Wang, Xiyao and Qin, Bin and Wang, Yumeng and Yan, Zizhen and Feng, Ziyong and Liu, Ziwei and Li, Bo and Deng, Jiankang},
94
+ booktitle={arXiv},
95
+ year={2025}
96
+ }
97
+ ```