Jump to content

Connect SuperML | Leeroopedia MCP: Equip your AI agents with best practices, code verification, and debugging knowledge. Powered by Leeroo — building Organizational Superintelligence. Contact us at founders@leeroo.com.

Implementation:Open compass VLMEvalKit ConcatVideoDataset

From Leeroopedia
Revision as of 13:28, 16 February 2026 by Admin (talk | contribs) (Auto-imported from implementations/Open_compass_VLMEvalKit_ConcatVideoDataset.md)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Field Value
source VLMEvalKit
domain Vision, Benchmarking, Video Dataset Aggregation

Overview

Benchmark dataset implementation for Concat Video evaluation in VLMEvalKit.

Description

ConcatVideoDataset inherits from VideoBaseDataset and provides a mechanism to aggregate multiple video datasets into a single evaluation dataset. It dynamically builds sub-datasets, concatenates their data with SUB_DATASET labels, and delegates evaluation to individual sub-dataset evaluate methods.

Usage

Registered in vlmeval/dataset/__init__.py and invoked through build_dataset() by benchmark name.

Code Reference

  • Source: vlmeval/dataset/video_concat_dataset.py, Lines: L1-85
  • Import: from vlmeval.dataset.video_concat_dataset import ConcatVideoDataset

Signature:

class ConcatVideoDataset(VideoBaseDataset):
    TYPE = 'dynamic'
    DATASET_URL = {...}
    DATASET_MD5 = {...}
    ...

I/O Contract

Direction Description
Inputs TSV dataset file with image/video paths and questions
Outputs Evaluation results DataFrame with scores per category

Usage Examples

from vlmeval.dataset import build_dataset
dataset = build_dataset('ConcatVideoDataset')

Related Pages

Page Connections

Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment