nielsr HF Staff commited on
Commit
d0dd589
·
verified ·
1 Parent(s): 34e3264

Add DyBench dataset card and link to paper

Browse files

Hi, I'm Niels from the community science team at Hugging Face.

This PR improves the dataset card for DyBench by:
- Adding the `video-text-to-text` task category to the metadata.
- Linking the research paper: [Learning Spatiotemporal Sensitivity in Video LLMs via Counterfactual Reinforcement Learning](https://huggingface.co/papers/2605.21988).
- Adding links to the project page and GitHub repository.
- Providing a description of the benchmark and its categories (Reversible Dynamics, Moving Direction, and Event Sequence).

Files changed (1) hide show
  1. README.md +27 -3
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
- language:
19
- - en
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.