Datasets › MSVD-CTN

MSVD-CTN (MSVD Causal-Temporal Narrative)

Introduced by Asmar Nadeem et al. in NarrativeBridge: Enhancing Video Captioning with Causal-Temporal Narrative10 Jun 2024 archive 2025-07-28

MSVD-CTN Dataset

This dataset contains CTN annotations for the MSVD-CTN benchmark dataset in JSON format. It has three files for the train, test, and validation splits. For project details, visit https://narrativebridge.github.io/.

Dataset Structure

Each JSON file contains a dictionary where the keys are the video IDs and the values are the corresponding Causal-Temporal Narrative (CTN) captions. The CTN captions are represented as a dictionary with two keys: "Cause" and "Effect", containing the cause and effect statements, respectively.

Example:

{
  "video_id_1": {
    "Cause": "a person performed an action",
    "Effect": "a specific outcome occurred"
  },
  "video_id_2": {
    "Cause": "another cause statement",
    "Effect": "another effect statement"
  }
}

Loading the Datasets

To load the datasets, use a JSON parsing library in your preferred programming language. For example, in Python, you can use the json module:

import json

with open("msvd_CTN_train.json", "r") as f:
    msvd_train_data = json.load(f)

# Access the CTN captions
for video_id, ctn_caption in msvd_train_data.items():
    cause = ctn_caption["Cause"]
    effect = ctn_caption["Effect"]
    # Process the cause and effect statements as needed

License

The MSVD-CTN benchmark dataset is licensed under the Creative Commons Attribution Non Commercial No Derivatives 4.0 International (CC BY-NC-ND 4.0) license.

Benchmarks archive 2025-07-28

All 1 leaderboard whose dataset resolves to this page shown (sort by any header). "First row" is the archive's own first row at snapshot, in the archive's row order; nothing here re-ranks and metric direction is not asserted.

First row (archive order)PaperCode
Video Captioning MSVD-CTN CEN CIDEr 63.51 NarrativeBridge: Enhancing Video Captioning with... — 4 Compare

Papers archive 2025-07-28

4 shown of 4 papers with a leaderboard row on this dataset's benchmarks, newest first. The archive's own "papers using this dataset" list was never published, so this is the benchmark-backed subset; the archive's count for this dataset is 4. The Syntology column is from Syntology's graph (read 2026-09-24), stated per sample; it is not part of any archive number.

Dataset loaders archive 2025-07-28

No loader listed in the archive.

Tasks archive 2025-07-28

License archive 2025-07-28

Creative Commons Attribution Non Commercial No Derivatives 4.0

Modalities archive 2025-07-28

Languages archive 2025-07-28

Variants archive 2025-07-28

  • MSVD-CTN

1 variant name, as the archive lists them.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections