Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    ValueError
Message:      Expected object or value
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 290, in _generate_tables
                  pa_table = paj.read_json(
                      io.BytesIO(batch), read_options=paj.ReadOptions(block_size=block_size)
                  )
                File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
                File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
                File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
                  raise convert_status(status)
              pyarrow.lib.ArrowInvalid: JSON parse error: Column() changed from object to string in row 0
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
                  return get_rows(
                      dataset=dataset,
                  ...<4 lines>...
                      column_names=column_names,
                  )
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
                  rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
                File "/src/services/worker/src/worker/utils.py", line 478, in safe_iter
                  yield from ds.decode(False) if ds.features else ds
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2818, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2355, in __iter__
                  for key, pa_table in self._iter_arrow():
                                       ~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2380, in _iter_arrow
                  for key, pa_table in self.ex_iterable._iter_arrow():
                                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 304, in _generate_tables
                  batch = json_encode_fields_in_json_lines(original_batch, json_field_paths)
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 111, in json_encode_fields_in_json_lines
                  examples = [ujson_loads(line) for line in original_batch.splitlines()]
                              ~~~~~~~~~~~^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 20, in ujson_loads
                  return pd.io.json.ujson_loads(*args, **kwargs)
                         ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
              ValueError: Expected object or value

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

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
171