nielsr HF Staff commited on
Commit
e3eac96
·
verified ·
1 Parent(s): 0dc3599

Add dataset card for MBench with metadata and usage instructions

Browse files

This PR initializes the dataset card for MBench. It includes:
- YAML metadata specifying the `text-to-video` task category and the MIT license.
- Links to the paper, project page, and the official GitHub repository.
- A Python code snippet demonstrating how to use the MBench API for loading and evaluating, as extracted from the GitHub README.
- Citation information.

Files changed (1) hide show
  1. README.md +52 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-to-video
5
+ tags:
6
+ - video-world-models
7
+ - evaluation
8
+ - benchmark
9
+ ---
10
+
11
+ # MBench: A Comprehensive Benchmark on Memory Capability for Video World Models
12
+
13
+ [**Project Page**](https://peanutup.github.io/MBench-project/) | [**Paper**](https://huggingface.co/papers/2606.00793) | [**GitHub**](https://github.com/study-overflow/MBench) | [**Leaderboard**](https://huggingface.co/spaces/study-overflow/MBench_Leaderboard)
14
+
15
+ **MBench** is a comprehensive benchmark dedicated to quantifying and evaluating the memory capability of video world models. It systematically decomposes the memory capability of video world models into three hierarchical and complementary core dimensions: entity consistency, environment consistency, and causal consistency, which are further refined into 12 quantifiable sub-dimensions for comprehensive characterization of long-term memory.
16
+
17
+ The benchmark evaluates models under two complementary settings:
18
+ - **MBench-A**: Action-conditioned, for action-conditioned world models.
19
+ - **MBench-T**: Text-segment-conditioned, for long-video text continuation models.
20
+
21
+ ## Python API Usage
22
+
23
+ Below is a quick example of how to load MBench data and evaluate metrics using the official Python API:
24
+
25
+ ```python
26
+ from mbench.core.pipeline import run_eval
27
+ from mbench.core.registry import metric_registry, adapter_registry, aggregator_registry
28
+ import mbench.cli; mbench.cli._bootstrap() # register all built-in plugins
29
+
30
+ adapter = adapter_registry.get("mbench-dir")
31
+ items = adapter.load("data/MBench-A-Setup", subsets=["environment"], limit=4)
32
+ metric = metric_registry.get("mbencha.environment.spatial_epipolar")
33
+ aggregator = aggregator_registry.get("mean")
34
+
35
+ summary = run_eval(items, [metric], aggregator, "runs/python_api_demo")
36
+ ```
37
+
38
+ For more detailed setup instructions (including CLI execution, data preparation, and evaluation of specific dimensions), please refer to the [GitHub Repository](https://github.com/study-overflow/MBench).
39
+
40
+ ## Citation
41
+
42
+ ```bibtex
43
+ @article{zhang2026mbench,
44
+ title = {MBench: A Comprehensive Benchmark on Memory Capability for Video World Models},
45
+ author = {Zhang, Shengjun and Zhang, Zhang and Huang, Simin and Tang, Zhenyu and Wang, Hanyang and Dai, Chensheng and Chen, Min and Li, Yifan and Li, Yuxin and Chen, Yingjie and Liu, Hao and Li, Chen and Duan, Yueqi},
46
+ year = {2026},
47
+ eprint = {2606.00793},
48
+ archivePrefix = {arXiv},
49
+ primaryClass = {cs.CV},
50
+ url = {https://arxiv.org/abs/2606.00793}
51
+ }
52
+ ```