Datasets:
Add DyBench dataset card and link to paper (#2)
Browse files- Add DyBench dataset card and link to paper (d0dd589bb494288404e8171c65866ec96897d7ec)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
license: mit
|
|
|
|
|
|
|
| 3 |
extra_gated_fields:
|
| 4 |
Name: text
|
| 5 |
Company/Organization: text
|
|
@@ -15,6 +19,26 @@ configs:
|
|
| 15 |
data_files: json/moving_direction.json
|
| 16 |
- config_name: reversible_dynamics
|
| 17 |
data_files: json/reversible_dynamics.json
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
license: mit
|
| 5 |
+
task_categories:
|
| 6 |
+
- video-text-to-text
|
| 7 |
extra_gated_fields:
|
| 8 |
Name: text
|
| 9 |
Company/Organization: text
|
|
|
|
| 19 |
data_files: json/moving_direction.json
|
| 20 |
- config_name: reversible_dynamics
|
| 21 |
data_files: json/reversible_dynamics.json
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
# DyBench
|
| 25 |
+
|
| 26 |
+
[**Project Page**](https://ddz16.github.io/crpo.github.io/) | [**Paper**](https://huggingface.co/papers/2605.21988) | [**GitHub**](https://github.com/ddz16/CRPO)
|
| 27 |
+
|
| 28 |
+
DyBench is a paired counterfactual video benchmark introduced in the paper "[Learning Spatiotemporal Sensitivity in Video LLMs via Counterfactual Reinforcement Learning](https://huggingface.co/papers/2605.21988)".
|
| 29 |
+
|
| 30 |
+
The benchmark is designed to evaluate the **spatiotemporal sensitivity** of Video Large Language Models (Video LLMs). It addresses the issue of models relying on "shortcuts" (such as single-frame cues or language priors) rather than tracking actual video dynamics. DyBench utilizes a strict pair-accuracy metric that requires a model to correctly answer questions for both original and counterfactual versions of a video.
|
| 31 |
+
|
| 32 |
+
### Dataset Details
|
| 33 |
+
DyBench consists of **3,014 videos** covering three primary categories of spatiotemporal dynamics:
|
| 34 |
+
- **Reversible Dynamics**: Evaluating if models understand physical processes that can be temporally reversed.
|
| 35 |
+
- **Moving Direction**: Tracking the spatial trajectory and direction of motion.
|
| 36 |
+
- **Event Sequence**: Understanding the temporal order in which events occur.
|
| 37 |
+
|
| 38 |
+
### Data Structure
|
| 39 |
+
The dataset is organized into three configurations corresponding to the tasks above:
|
| 40 |
+
- `event_sequence`
|
| 41 |
+
- `moving_direction`
|
| 42 |
+
- `reversible_dynamics`
|
| 43 |
+
|
| 44 |
+
Each configuration contains JSON files mapping videos to their respective questions and ground-truth answers.
|