SF20K is a large-scale dataset featuring 20,143 short films, totaling over 3,584 hours of video content. Sourced from YouTube and Vimeo, the dataset is composed of amateur films, which minimizes data leakage from the pre-training corpora of large models. This unique characteristic makes SF20K an ideal benchmark for evaluating a model's true video understanding capabilities.
The dataset is designed to challenge models with story-level reasoning through two primary tasks:
The SF20K dataset is hosted on the Hugging Face Hub and can be easily loaded using the datasets library.
# Make sure you have the 'datasets' library installed
# pip install datasets
from datasets import load_dataset
# Load the SF20K dataset
dataset = load_dataset("rghermi/sf20k")
# You can then access different splits (e.g., train, test)
print(dataset["train"][0])
Each sample in the dataset contains the following fields:
| Field | Description | Data Type |
|---|---|---|
question_id | A unique identifier for the question. | string |
video_id | A unique identifier for the movie. | string |
video_url | The source URL of the video. | string |
question | The question about the film's narrative. | string |
answer | The ground-truth answer for the question. | string |
option_0 | The first multiple-choice option. | string |
option_1 | The second multiple-choice option. | string |
option_2 | The third multiple-choice option. | string |
option_3 | The fourth multiple-choice option. | string |
option_4 | The fifth multiple-choice option. | string |
correct_answer | The index corresponding to the correct option (e.g., 0, 1). | string |
correct_letter | The letter corresponding to the correct option (e.g., 'A', 'B'). | string |
The dataset is designed for evaluating models on their ability to perform long-form video reasoning. The primary metrics are accuracy for the MCQA task and LLM-QA-Eval (i.e., LLM-based text similarity assessment) for the OEQA task.
If you use the SF20K dataset in your research, please cite our paper:
@article{ghermi2025longstoryshortstorylevel,
title={Long Story Short: Story-level Video Understanding from 20K Short Films},
author={Ridouane Ghermi and Xi Wang and Vicky Kalogeiton and Ivan Laptev},
year={2025},
}
39 commits
Jupyter Notebook
98.2%
Python
1.8%
SF20K is a large-scale dataset featuring 20,143 short films, totaling over 3,584 hours of video content. Sourced from YouTube and Vimeo, the dataset is composed of amateur films, which minimizes data leakage from the pre-training corpora of large models. This unique characteristic makes SF20K an ideal benchmark for evaluating a model's true video understanding capabilities.
The dataset is designed to challenge models with story-level reasoning through two primary tasks:
The SF20K dataset is hosted on the Hugging Face Hub and can be easily loaded using the datasets library.
# Make sure you have the 'datasets' library installed
# pip install datasets
from datasets import load_dataset
# Load the SF20K dataset
dataset = load_dataset("rghermi/sf20k")
# You can then access different splits (e.g., train, test)
print(dataset["train"][0])
Each sample in the dataset contains the following fields:
| Field | Description | Data Type |
|---|---|---|
question_id | A unique identifier for the question. | string |
video_id | A unique identifier for the movie. | string |
video_url | The source URL of the video. | string |
question | The question about the film's narrative. | string |
answer | The ground-truth answer for the question. | string |
option_0 | The first multiple-choice option. | string |
option_1 | The second multiple-choice option. | string |
option_2 | The third multiple-choice option. | string |
option_3 | The fourth multiple-choice option. | string |
option_4 | The fifth multiple-choice option. | string |
correct_answer | The index corresponding to the correct option (e.g., 0, 1). | string |
correct_letter | The letter corresponding to the correct option (e.g., 'A', 'B'). | string |
The dataset is designed for evaluating models on their ability to perform long-form video reasoning. The primary metrics are accuracy for the MCQA task and LLM-QA-Eval (i.e., LLM-based text similarity assessment) for the OEQA task.
If you use the SF20K dataset in your research, please cite our paper:
@article{ghermi2025longstoryshortstorylevel,
title={Long Story Short: Story-level Video Understanding from 20K Short Films},
author={Ridouane Ghermi and Xi Wang and Vicky Kalogeiton and Ivan Laptev},
year={2025},
}
39 commits
Jupyter Notebook
98.2%
Python
1.8%