--- license: apache-2.0 task_categories: - text-retrieval - text-classification - token-classification language: - en tags: - multimodal pretty_name: MMEB-V2 size_categories: - 1M ## Dataset Structure The directory structure of this Hugging Face repository is shown below. For video tasks, we provide sampled frames in this repo. For image tasks, we provide the raw images. Files from each meta-task are zipped together, resulting in six files. For example, ``video_cls.tar.gz`` contains the sampled frames for the video classification task. ``` β†’ video-tasks/ β”œβ”€β”€ frames/ β”‚ β”œβ”€β”€ video_cls.tar.gz β”‚ β”œβ”€β”€ video_qa.tar.gz β”‚ β”œβ”€β”€ video_ret.tar.gz β”‚ └── video_mret.tar.gz β†’ image-tasks/ β”œβ”€β”€ mmeb_v1.tar.gz └── visdoc.tar.gz ``` After downloading and unzipping these files locally, you can organize them as shown below. (You may choose to use ``Git LFS`` or ``wget`` for downloading.) Then, simply specify the correct file path in the configuration file used by your code. ``` β†’ MMEB β”œβ”€β”€ video-tasks/ β”‚ └── frames/ β”‚ β”œβ”€β”€ video_cls/ β”‚ β”‚ β”œβ”€β”€ UCF101/ β”‚ β”‚ β”‚ └── video_1/ # video ID β”‚ β”‚ β”‚ β”œβ”€β”€ frame1.png # frame from video_1 β”‚ β”‚ β”‚ β”œβ”€β”€ frame2.png β”‚ β”‚ β”‚ └── ... β”‚ β”‚ β”œβ”€β”€ HMDB51/ β”‚ β”‚ β”œβ”€β”€ Breakfast/ β”‚ β”‚ └── ... # other datasets from video classification category β”‚ β”œβ”€β”€ video_qa/ β”‚ β”‚ └── ... # video QA datasets β”‚ β”œβ”€β”€ video_ret/ β”‚ β”‚ └── ... # video retrieval datasets β”‚ └── video_mret/ β”‚ └── ... # moment retrieval datasets β”œβ”€β”€ image-tasks/ β”‚ β”œβ”€β”€ mmeb_v1/ β”‚ β”‚ β”œβ”€β”€ OK-VQA/ β”‚ β”‚ β”‚ β”œβ”€β”€ image1.png β”‚ β”‚ β”‚ β”œβ”€β”€ image2.png β”‚ β”‚ β”‚ └── ... β”‚ β”‚ β”œβ”€β”€ ImageNet-1K/ β”‚ β”‚ └── ... # other datasets from MMEB-V1 category β”‚ └── visdoc/ β”‚ └── ... # visual document retrieval datasets ```