--- pretty_name: GLaVE-1.2M license: other license_name: academic-non-commercial-use-only license_link: https://github.com/HIT-leaderone/GLaVE-Cap language: - en task_categories: - visual-question-answering size_categories: - 10K detailed_caption: list local_caption: list overview_caption: large_string scene_list: map caption: large_string general_qa: map Scene: struct< scene_hint: string, caption: string, QA_pair: map > QA: struct< Dimension: string, Question: string, Answer: string, Options: list, Answer_choices: string > ``` The released column names correspond to the generation records as follows: | Released column | Generation field | | --- | --- | | `diff_caption` | `different` | | `detailed_caption` | `attention` | | `local_caption` | `merged` | The internal `frame_range` field was removed from each `scene_list` entry. Scene IDs, scene hints, scene captions, and scene-level QA pairs are retained. ## Loading the Dataset ### PyArrow ```python import pyarrow.parquet as pq table = pq.read_table( "hf://datasets/leaderonehit/GLaVE-1.2M/raw/part-00000.parquet" ) print(table.schema) print(table.slice(0, 1).to_pylist()[0]) ``` ### Download a Snapshot ```python from huggingface_hub import snapshot_download dataset_dir = snapshot_download( repo_id="leaderonehit/GLaVE-1.2M", repo_type="dataset", allow_patterns="raw/*.parquet", ) ``` `scene_list`, `QA_pair`, and `general_qa` use the Parquet Map logical type. PyArrow returns a Map value as a list of `(key, value)` pairs; call `dict(value)` when a regular Python dictionary is preferred. ## Source Information The source columns follow the provenance metadata of [LLaVA-Video-178K](https://huggingface.co/datasets/lmms-lab/LLaVA-Video-178K). Download the original videos from that dataset and use these two columns to locate the corresponding source file. For example: ```text data_source: 1_2_m_academic_v0_1 video_source: academic_source/Charades/293L4.mp4 ``` ## License All data and code are provided strictly for academic and non-commercial use. Please contact the authors if further clarification or permissions are needed. Users are also responsible for complying with the licenses and terms of the corresponding source videos. ## Citation ```bibtex @article{xu2025glavecap, title = {GLaVE-Cap: Global-Local Aligned Video Captioning with Vision Expert Integration}, author = {Xu, Wan and Zhu, Feng and Zeng, Yihan and Guo, Yuanfan and Liu, Ming and Xu, Hang and Zuo, Wangmeng}, journal = {arXiv preprint arXiv:2509.11360}, year = {2025} } ```