The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.

MarineEVT Dataset

Paper Dataset Size License

MarineEVT: Advancing Event-Centric Marine Video Understanding via Visual Tool Reasoning

πŸ“– Description

MarineEVT is a comprehensive event-centric dataset and benchmark for marine video understanding. It comprises 20,000 richly annotated underwater video question-answer pairs spanning 20 fine-grained dimensions, designed to support semantic, contextualized, spatial-temporal, and causal reasoning in marine environments.

The dataset addresses the challenge that informative events in marine videos are often sparse, ephemeral, and unevenly distributed, posing significant challenges for existing Video Language Models (VLMs).

πŸ“Š Dataset Statistics

Metric Value
Total QA Pairs 20,000
Evaluation Set 2,000 pairs (reserved for testing)
Dimensions 20 fine-grained categories
Video Sources Underwater marine environments

Reasoning Types

The dataset covers five major reasoning categories:

  1. Semantic Reasoning - Understanding what events happened and their semantic meaning
  2. Contextual Reasoning - Identifying which entities are present in video events
  3. Spatial Reasoning - Localizing where entities are in the underwater scene
  4. Temporal Reasoning - Understanding when events occur and temporal dynamics
  5. Causal Reasoning - Inferring causal relationships and why events occur

πŸ“ Dataset Structure

MarineEVT/
β”œβ”€β”€ CasualReasoning/
β”‚   β”œβ”€β”€ Human-SpeciesCasualDynamics/
β”‚   β”‚   β”œβ”€β”€ train/
β”‚   β”‚   β”‚   β”œβ”€β”€ videos/
β”‚   β”‚   β”‚   └── multi_turn_data_ver2.json
β”‚   β”‚   └── test/
β”‚   β”‚       β”œβ”€β”€ videos/
β”‚   β”‚       └── multi_turn_data_ver2.json
β”‚   β”œβ”€β”€ Inter-SpeciesCausalDynamics/
β”‚   └── ReasonInference/
β”œβ”€β”€ SpatialReasoning/
β”‚   β”œβ”€β”€ [subdimension]/
β”‚   β”‚   β”œβ”€β”€ train/
β”‚   β”‚   └── test/
β”œβ”€β”€ SemanticReasoning/
β”œβ”€β”€ ContextualReasoning/
β”œβ”€β”€ TemporalReasoning/
└── README.md

Data Format

Each JSON file contains multi-turn QA pairs with the following structure:

{
  "video_id": "zoDLceQg0J2U",
  "video_url": "",
  "question": "What is the marine animal doing?",
  "answer": "The animal is hunting for prey...",
  "question_task": "VideoQuestionAnswering",
  "dimension": "CasualReasoning",
  "subdimension": "Human-SpeciesCausalDynamics",
  "turns": [
    {
      "turn_id": 1,
      "id": 1,
      "visual_input": [...],
      "user_query": "...",
      "assistant_response": "..."
    }
  ]
}

πŸ“₯ Download

The dataset is available for download at:

Official Website: https://marineevt.hkustvgd.com/

Hugging Face: Use this dataset directly via the datasets library:

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("your-username/marineevt")

# Access training and test splits
train_data = dataset["train"]
test_data = dataset["test"]

πŸ”§ Usage Example

import json
from pathlib import Path

# Load training data
with open("CasualReasoning/Human-SpeciesCasualDynamics/train/multi_turn_data_ver2.json", "r") as f:
    data = json.load(f)

# Access a sample
sample = data[0]
print(f"Question: {sample['question']}")
print(f"Answer: {sample['answer']}")
print(f"Dimension: {sample['dimension']}")

πŸ“„ License

This dataset is released under the MIT License.

πŸ“ Citation

If you use this dataset in your research, please cite our paper:

@inproceedings{to2026marineevt,
  title={{MarineEVT}: Advancing Event-Centric Marine Video Understanding via Visual Tool Reasoning},
  author={To, Tuan-An and Wong, Yuk-Kwan and Vu, Tuan-Anh and Zheng, Ziqiang and Yeung, Sai-Kit},
  booktitle={European Conference on Computer Vision (ECCV)},
  year={2026}
}

πŸ”— Links

Downloads last month
32