AnTo2209/MarineEVT
MarineEVT Dataset 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β¦ See the full description on the dataset page: https://huggingface.co/datasets/AnTo2209/MarineEVT.
MarineEVT Dataset
 ![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
Reasoning Types
The dataset covers five major reasoning categories:
- Semantic Reasoning - Understanding what events happened and their semantic meaning
- Contextual Reasoning - Identifying which entities are present in video events
- Spatial Reasoning - Localizing where entities are in the underwater scene
- Temporal Reasoning - Understanding when events occur and temporal dynamics
- 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.mdData 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
- Project Page: https://marineevt.hkustvgd.com/
- Paper: arXiv (coming soon)
- Code: GitHub (coming soon)
