R3-Bench / README.md
nlxpku's picture
Upload README.md with huggingface_hub
7476603 verified
# R<sup>3</sup>-Bench: Read the Room Reasoning Benchmark
[![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY--NC%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc/4.0/)
[![Paper](https://img.shields.io/badge/Paper-ICLR-red.svg)](https://openreview.net/pdf?id=TJilJnZjpw)
[![Hugging Face Dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/nlxpku/R3-Bench)
This is the official repository for **R<sup>3</sup>-Bench**, introduced in the paper:
**"Read the Room: Video Social Reasoning with Mental-Physical Causal Chains"** (ICLR 2026).
R<sup>3</sup>-Bench is an evaluation benchmark with fine-grained annotations of belief, intent, desire, emotion, and their causal chains in complex social scenarios.
## πŸ“‘ Table of Contents
- [Dataset Structure](#-dataset-structure)
- [Download Videos](#-download-videos)
- [Evaluation Settings](#-evaluation-settings)
- [License](#-license)
- [Citation](#-citation)
- [Contact](#-contact)
## πŸ“‚ Dataset Structure
The dataset is organized as follows:
**videos.csv**: Contains video ids and their corresponding start and end times (seconds).
**r3-bench-hard.json**: Contains the question-answer pairs in R<sup>3</sup>-Bench-Hard.
```
{
submission_id: {
"Human_Annotation_Data": {
"QID": str,
"Question": str,
"Answer_Index": int,
"Options": List[str],
},
"YouTube_ID": str,
"Start_Seconds": int,
"End_Seconds": int,
}
}
```
- **r3-bench-dx.json**: Contains the chain structure and question-answer pairs in R<sup>3</sup>-Bench-DX. "Belief-X-I/Intent-X-I/Desire-X-I/Emotion-X-I" means the mental state of person X, where 'I' stands for index. "Event-I" means the event, where 'I' stands for index. "Sub-Chain-I" means the subchain, where 'I' stands for index.
```
{
submission_id: {
chain_id: {
"Referents": {
Referent-X: str, the referent of person X,
},
"Nodes": {
"Belief-X-I/Intent-X-I/Desire-X-I/Emotion-X-I/Event-I": {
"QID": str,
"Description": str,
"Question": str,
"Answer_Index": int,
"Options": List[str],
}
},
"Sub-Chains": {
Sub-Chain-I: {
"Why_QA": {
"QID": str,
"Question": str,
"Answer_Index": int,
"Options": List[str],
},'
"How/What_QA": {
"QID": str,
"Question": str,
"Answer_Index": int,
"Options": List[str],
},
"Reasons": list of node ids, the reasons in the subchain,
"Result": node id, the result in the subchain,
},
}
}
},
"YouTube_ID": str,
"Start_Seconds": int,
"End_Seconds": int,
}
```
## πŸ“₯ Download Videos
We provide video ids and their corresponding start and end times in **videos.csv**. You can download the videos using the YouTube API or any YouTube video downloader by specifying the video id and the time range.
## πŸš€ Evaluation Settings
Our evaluation was conducted using [VLMEvalKit](https://github.com/open-compass/VLMEvalKit.git).
The evaluation prompt **without subtitles** is:
```
These are the frames of a video. Select the best answer to the following multiple-choice question based on the video. Based on your understanding, respond with only the letter (A, B, C, D, or E) of the correct option.
Question: {question}
{options (separated with '\n')}
Answer:
```
We use Whisper large-v2 to extract subtitles from the videos. The evaluation prompt **with subtitles** is:
```
These are the frames of a video. This video's subtitles are listed below:
{subtitles}
Select the best answer to the following multiple-choice question based on the video. Based on your understanding, respond with only the letter (A, B, C, D, or E) of the correct option.
Question: {question}
{options (separated with '\n')}
Answer:
```
For the video, we extract **16 frames** at a resolution of **640x360**.
## πŸ“œ License
- Our dataset is licensed under **[Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/)**.
- The **videos** are collected from public sources (YouTube) and are subject to their respective original licenses. We only provide video IDs and corresponding start and end times for academic research purposes.
## πŸ“– Citation
If you find our dataset or paper useful in your research, please consider citing:
```bibtex
@inproceedings{
niu2026read,
title={Read the Room: Video Social Reasoning with Mental-Physical Causal Chains},
author={Lixing Niu and Jiapeng Li and Xingping Yu and Xinyi Dong and Shu Wang and Ruining Feng and Bo Wu and Ping Wei and Yisen Wang and Lifeng Fan},
booktitle={The Fourteenth International Conference on Learning Representations},
year={2026},
url={https://openreview.net/forum?id=TJilJnZjpw}
}
```
## βœ‰οΈ Contact
For any questions, feedback, or issues regarding the dataset, please open an issue in this repository or contact:
**Lixing Niu**: lxniu@stu.pku.edu.cn