Datasets:
docs: finalize PAWBench release metadata
Browse filesPublish arXiv citation, official CLI workflow, release metadata, and explicit code/data license boundaries for PIC-157.
- README.md +54 -36
- manifest.json +9 -1
README.md
CHANGED
|
@@ -6,22 +6,22 @@ tags:
|
|
| 6 |
- benchmark
|
| 7 |
- video-generation
|
| 8 |
- physical-reasoning
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# PAWBench
|
| 12 |
|
| 13 |
### A benchmark for distributional physical realism in generated videos
|
| 14 |
|
| 15 |
-
> [!IMPORTANT]
|
| 16 |
-
> **Private preview.** This repository contains the current materialized
|
| 17 |
-
> PAWBench input package for review and integration. It is not yet a public
|
| 18 |
-
> benchmark release or leaderboard submission endpoint.
|
| 19 |
-
|
| 20 |
PAWBench asks whether a video model reproduces the *range and frequency* of
|
| 21 |
outcomes that a physical scene can produce. It evaluates repeated rollouts from
|
| 22 |
the same source image and action, rather than treating one plausible-looking
|
| 23 |
video as sufficient evidence of physical realism.
|
| 24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
## At a glance
|
| 26 |
|
| 27 |
| Component | Contents |
|
|
@@ -82,31 +82,27 @@ Illustrative Calibration record:
|
|
| 82 |
|
| 83 |
## Using the data
|
| 84 |
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
"model": "your-vlm-model",
|
| 107 |
-
"api_key_env": "YOUR_VLM_API_KEY",
|
| 108 |
-
},
|
| 109 |
-
)
|
| 110 |
```
|
| 111 |
|
| 112 |
The evaluator derives the full 50-scene × 50-rollout grid from the scene
|
|
@@ -122,12 +118,34 @@ This dataset repository contains benchmark inputs only:
|
|
| 122 |
- generated model videos, provider responses, and experiment result bundles are
|
| 123 |
intentionally excluded.
|
| 124 |
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
|
| 129 |
## Citation
|
| 130 |
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- benchmark
|
| 7 |
- video-generation
|
| 8 |
- physical-reasoning
|
| 9 |
+
- arxiv:2608.27345
|
| 10 |
---
|
| 11 |
|
| 12 |
# PAWBench
|
| 13 |
|
| 14 |
### A benchmark for distributional physical realism in generated videos
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
PAWBench asks whether a video model reproduces the *range and frequency* of
|
| 17 |
outcomes that a physical scene can produce. It evaluates repeated rollouts from
|
| 18 |
the same source image and action, rather than treating one plausible-looking
|
| 19 |
video as sufficient evidence of physical realism.
|
| 20 |
|
| 21 |
+
[Paper](https://arxiv.org/abs/2608.27345) ·
|
| 22 |
+
[Code](https://github.com/Andrew0613/PAWBench) ·
|
| 23 |
+
[Project website](https://pawbench.github.io/)
|
| 24 |
+
|
| 25 |
## At a glance
|
| 26 |
|
| 27 |
| Component | Contents |
|
|
|
|
| 82 |
|
| 83 |
## Using the data
|
| 84 |
|
| 85 |
+
Download this dataset, generate the complete rollout grid described by the
|
| 86 |
+
[PAWBench evaluator](https://github.com/Andrew0613/PAWBench), and run the
|
| 87 |
+
repository's command-line workflow:
|
| 88 |
+
|
| 89 |
+
```bash
|
| 90 |
+
hf download Andrew613/PAWBench \
|
| 91 |
+
--repo-type dataset \
|
| 92 |
+
--local-dir /path/to/PAWBench-data
|
| 93 |
+
|
| 94 |
+
git clone https://github.com/Andrew0613/PAWBench.git
|
| 95 |
+
cd PAWBench
|
| 96 |
+
pip install -r requirements.txt
|
| 97 |
+
|
| 98 |
+
python evaluate.py \
|
| 99 |
+
--benchmark /path/to/PAWBench-data \
|
| 100 |
+
--videos /path/to/my-model-rollouts \
|
| 101 |
+
--output runs/my-model/evaluation \
|
| 102 |
+
--model my-model \
|
| 103 |
+
--vlm-base-url https://openrouter.ai/api/v1 \
|
| 104 |
+
--vlm-model google/gemini-3.5-flash \
|
| 105 |
+
--vlm-api-key-env OPENROUTER_API_KEY
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
```
|
| 107 |
|
| 108 |
The evaluator derives the full 50-scene × 50-rollout grid from the scene
|
|
|
|
| 118 |
- generated model videos, provider responses, and experiment result bundles are
|
| 119 |
intentionally excluded.
|
| 120 |
|
| 121 |
+
This public repository preserves the materialized 50-scene benchmark package.
|
| 122 |
+
Record the exact Hugging Face revision together with the evaluator commit for
|
| 123 |
+
reproducible evaluations.
|
| 124 |
|
| 125 |
## Citation
|
| 126 |
|
| 127 |
+
If you use PAWBench, please cite the paper and record the exact Hugging Face
|
| 128 |
+
revision and GitHub commit used for your evaluation:
|
| 129 |
+
|
| 130 |
+
```bibtex
|
| 131 |
+
@article{pu2026pawbench,
|
| 132 |
+
title={PAWBench: How Far Are We from Probabilistically Aligned World Modeling?},
|
| 133 |
+
author={Yuandong Pu and Le Zhuo and Sayak Paul and Gabriel Jorge Menezes and Avram Đorđević and Shiyang Li and Yifan Zhou and Bin Fu and Wenlong Zhang and Junjun He and Yu Qiao and Yihao Liu and Jinbo Xing and Xi Chen},
|
| 134 |
+
journal={arXiv preprint arXiv:2608.27345},
|
| 135 |
+
year={2026},
|
| 136 |
+
eprint={2608.27345},
|
| 137 |
+
archivePrefix={arXiv},
|
| 138 |
+
primaryClass={cs.CV},
|
| 139 |
+
url={https://arxiv.org/abs/2608.27345}
|
| 140 |
+
}
|
| 141 |
+
```
|
| 142 |
+
|
| 143 |
+
## License and usage
|
| 144 |
+
|
| 145 |
+
The Apache-2.0 license in the
|
| 146 |
+
[PAWBench code repository](https://github.com/Andrew0613/PAWBench) applies to
|
| 147 |
+
the evaluator source code, not automatically to this dataset's images, prompt
|
| 148 |
+
material, or scene metadata. No separate license has been selected for this
|
| 149 |
+
dataset repository. Do not infer permission to redistribute or create
|
| 150 |
+
derivatives of its assets without permission from the project owners. Source
|
| 151 |
+
and package provenance is recorded in `scenes.jsonl` and `manifest.json`.
|
manifest.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"schema_version": "pawbench.benchmark_inputs/v1",
|
| 3 |
"dataset_id": "PAWBench",
|
|
|
|
| 4 |
"benchmark_revision": 2,
|
| 5 |
"scene_count": 50,
|
| 6 |
"splits": {
|
|
@@ -18,6 +19,13 @@
|
|
| 18 |
"owner_accepted_at": "2026-08-14"
|
| 19 |
}
|
| 20 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
"upstream": {
|
| 22 |
"repository": "Andrew613/PAWBench-Results",
|
| 23 |
"revision": "5fdea8a1e7a1e6ccf69bf5af9cf7947aefc58190",
|
|
@@ -41,5 +49,5 @@
|
|
| 41 |
]
|
| 42 |
}
|
| 43 |
],
|
| 44 |
-
"claim_boundary": "Benchmark input materialization only; no generation, evaluation, metric,
|
| 45 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"schema_version": "pawbench.benchmark_inputs/v1",
|
| 3 |
"dataset_id": "PAWBench",
|
| 4 |
+
"release_version": "0.1.0",
|
| 5 |
"benchmark_revision": 2,
|
| 6 |
"scene_count": 50,
|
| 7 |
"splits": {
|
|
|
|
| 19 |
"owner_accepted_at": "2026-08-14"
|
| 20 |
}
|
| 21 |
},
|
| 22 |
+
"publication": {
|
| 23 |
+
"title": "PAWBench: How Far Are We from Probabilistically Aligned World Modeling?",
|
| 24 |
+
"arxiv_id": "2608.27345",
|
| 25 |
+
"arxiv_url": "https://arxiv.org/abs/2608.27345",
|
| 26 |
+
"code_url": "https://github.com/Andrew0613/PAWBench",
|
| 27 |
+
"project_url": "https://pawbench.github.io/"
|
| 28 |
+
},
|
| 29 |
"upstream": {
|
| 30 |
"repository": "Andrew613/PAWBench-Results",
|
| 31 |
"revision": "5fdea8a1e7a1e6ccf69bf5af9cf7947aefc58190",
|
|
|
|
| 49 |
]
|
| 50 |
}
|
| 51 |
],
|
| 52 |
+
"claim_boundary": "Benchmark input materialization only; no generation, evaluation, metric, or scientific-result acceptance."
|
| 53 |
}
|