Datasets:
Update human annotations with 2026-07-07 current recheck
Browse files- README.md +26 -62
- data/annotation_to_video.parquet +2 -2
- data/current_review_consensus.parquet +3 -0
- data/current_review_status.parquet +3 -0
- data/current_review_submissions.parquet +3 -0
- data/exclusions.parquet +2 -2
- data/pairs.parquet +2 -2
- datasheet.md +7 -32
- original/annotation_to_video.jsonl +0 -0
- original/current_review_consensus.jsonl +0 -0
- original/current_review_status.jsonl +0 -0
- original/current_review_submissions.jsonl +0 -0
- original/exclusions.jsonl +124 -0
- original/pairs.jsonl +0 -0
- release_checks.json +29 -0
README.md
CHANGED
|
@@ -30,73 +30,37 @@ configs:
|
|
| 30 |
data_files:
|
| 31 |
- split: default
|
| 32 |
path: data/exclusions.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
---
|
| 34 |
|
| 35 |
# WRBench Human Annotations
|
| 36 |
|
| 37 |
-
Human
|
| 38 |
-
|
| 39 |
-
fields and mapped to the stable `video_asset_id` values used in
|
| 40 |
-
[`WRBench/wrbench-videos`](https://huggingface.co/datasets/WRBench/wrbench-videos).
|
| 41 |
-
|
| 42 |
-
Release boundary: **1,156 clean pairs** with **2,547 annotator
|
| 43 |
-
verdict records**. Maintenance-queue pairs are withheld and listed in the
|
| 44 |
-
`exclusions` config so the boundary is auditable.
|
| 45 |
-
|
| 46 |
-
## Configs & schema
|
| 47 |
-
|
| 48 |
-
### `pairs`
|
| 49 |
-
| Field | Type | Description |
|
| 50 |
-
|---|---|---|
|
| 51 |
-
| `pair_id` | string | Stable pair identifier |
|
| 52 |
-
| `dimension` | string | Evaluation dimension the comparison targets (D1-D6) |
|
| 53 |
-
| `video_asset_id_a` / `_b` | string | `sha256:<hash>` of the two compared clips |
|
| 54 |
-
| `verdict` | string | Aggregated pairwise outcome (A / B / tie) |
|
| 55 |
-
| `verdict_annotators` | list | Anonymized annotator ids (`p1`, `p2`, …) |
|
| 56 |
-
| `n_verdict_annotators` | int | Number of annotators contributing a verdict |
|
| 57 |
-
| `created_at` | string | Annotation timestamp |
|
| 58 |
-
|
| 59 |
-
### `annotation_to_video`
|
| 60 |
-
`video_asset_id` → `pair_id` index for joining annotations back to clips.
|
| 61 |
-
|
| 62 |
-
### `exclusions`
|
| 63 |
-
Maintenance-queue pairs withheld from the release, with a reason code.
|
| 64 |
-
|
| 65 |
-
## Load
|
| 66 |
-
|
| 67 |
-
```python
|
| 68 |
-
from datasets import load_dataset
|
| 69 |
-
|
| 70 |
-
pairs = load_dataset("WRBench/wrbench-human-annotations", "pairs", split="default")
|
| 71 |
-
```
|
| 72 |
-
|
| 73 |
-
## Privacy
|
| 74 |
-
|
| 75 |
-
Public fields only: `pair_id`, anonymized `verdict_annotators`, timestamps,
|
| 76 |
-
`video_asset_id`, and release-safe endpoint metadata. No internal paths, raw
|
| 77 |
-
annotator identities, or other PII are included. See `datasheet.md` for the full
|
| 78 |
-
data statement.
|
| 79 |
|
| 80 |
-
##
|
| 81 |
|
| 82 |
-
-
|
| 83 |
-
-
|
| 84 |
-
-
|
| 85 |
-
-
|
| 86 |
-
-
|
| 87 |
-
- 💻 GitHub: https://github.com/JinPLu/WRBench
|
| 88 |
-
- 🌐 Project page: https://jinplu.github.io/WRBench/
|
| 89 |
-
- 📄 Paper: https://arxiv.org/abs/2606.20545
|
| 90 |
-
- 🤗 HF paper page: https://huggingface.co/papers/2606.20545
|
| 91 |
|
| 92 |
-
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
-
```
|
| 95 |
-
|
| 96 |
-
title = {Current World Models Lack a Persistent State Core},
|
| 97 |
-
author = {WRBench Team},
|
| 98 |
-
journal = {arXiv preprint arXiv:2606.20545},
|
| 99 |
-
year = {2026},
|
| 100 |
-
url = {https://arxiv.org/abs/2606.20545}
|
| 101 |
-
}
|
| 102 |
-
```
|
|
|
|
| 30 |
data_files:
|
| 31 |
- split: default
|
| 32 |
path: data/exclusions.parquet
|
| 33 |
+
- config_name: current_review_submissions
|
| 34 |
+
data_files:
|
| 35 |
+
- split: default
|
| 36 |
+
path: data/current_review_submissions.parquet
|
| 37 |
+
- config_name: current_review_consensus
|
| 38 |
+
data_files:
|
| 39 |
+
- split: default
|
| 40 |
+
path: data/current_review_consensus.parquet
|
| 41 |
+
- config_name: current_review_status
|
| 42 |
+
data_files:
|
| 43 |
+
- split: default
|
| 44 |
+
path: data/current_review_status.parquet
|
| 45 |
---
|
| 46 |
|
| 47 |
# WRBench Human Annotations
|
| 48 |
|
| 49 |
+
Human review metadata and labels for WRBench. This release keeps the historical
|
| 50 |
+
clean pair boundary and adds the completed 2026-07-07 current-benchmark recheck.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
+
## Release Boundary
|
| 53 |
|
| 54 |
+
- Clean pair metadata rows: 1741 = 1,156 historical rows + 585 current rechecked pairs.
|
| 55 |
+
- Distinct `pair_id` values in `pairs`: 1586 (`155` duplicate-id rows are inherited from the historical staging boundary).
|
| 56 |
+
- Current recheck submissions: 1755 rows = 585 pairs x 3 annotators.
|
| 57 |
+
- Current recheck consensus: 585 rows.
|
| 58 |
+
- Exclusions/status rows: 1609 exclusions plus current review status for all 709 pool rows.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
|
| 60 |
+
Only current-current, full-six-dimension rows with all p1/p3/p4 submissions and
|
| 61 |
+
confirmed current benchmark assets are included as new clean labels. Current-vs-
|
| 62 |
+
legacy rows, single-video issue checks, and incomplete rows are kept out of
|
| 63 |
+
clean labels and recorded in `exclusions` / `current_review_status`.
|
| 64 |
|
| 65 |
+
Annotator ids are pseudonymized as `annotator_a`, `annotator_b`, etc. The salt is
|
| 66 |
+
not included in the public package.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/annotation_to_video.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40924c129f3695ca29f8a49f7cbc4cde776c8e4f8f74b44f6d7088e94eb5f626
|
| 3 |
+
size 117541
|
data/current_review_consensus.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee1f6e35e56643b83d506992af11ec4ab8b278734e3194e11bc28c5461c65554
|
| 3 |
+
size 113988
|
data/current_review_status.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb5e88ffbd31f7fbfaa65923c5277d46cb464c0b65690f4afca037c9aab3fc28
|
| 3 |
+
size 10354
|
data/current_review_submissions.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:120fded1b16b3ed2710e8633ad6339df91228f61ac0205416de1728741d72848
|
| 3 |
+
size 71815
|
data/exclusions.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10fc0ea92973d81fbb24e4d806eedad3e7109f0526e7439cc2edac7a54f098fd
|
| 3 |
+
size 14119
|
data/pairs.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53198546e81c794e5f31dca4ca38759f5e7b6ac6da29a8dd3679c817485a5426
|
| 3 |
+
size 234848
|
datasheet.md
CHANGED
|
@@ -1,36 +1,11 @@
|
|
| 1 |
# WRBench Human Annotations Datasheet
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
|
|
|
|
|
|
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
-
|
| 10 |
-
- Verdict records (sum of n_verdict_annotators): 2547
|
| 11 |
-
- Excluded maintenance pairs: documented in exclusions config
|
| 12 |
-
|
| 13 |
-
## Collection
|
| 14 |
-
|
| 15 |
-
Annotators compared model outputs on controlled pairwise tasks. Identities are
|
| 16 |
-
pseudonymized (`p1`, `p2`, ...).
|
| 17 |
-
|
| 18 |
-
## Recommended uses
|
| 19 |
-
|
| 20 |
-
Benchmark analysis, calibration of automated metrics, qualitative error studies.
|
| 21 |
-
|
| 22 |
-
## Out of scope
|
| 23 |
-
|
| 24 |
-
Training annotator models; deanonymization attempts.
|
| 25 |
-
|
| 26 |
-
## Citation
|
| 27 |
-
|
| 28 |
-
```bibtex
|
| 29 |
-
@article{wrbench2026,
|
| 30 |
-
title = {Current World Models Lack a Persistent State Core},
|
| 31 |
-
author = {WRBench Team},
|
| 32 |
-
journal = {arXiv preprint arXiv:2606.20545},
|
| 33 |
-
year = {2026},
|
| 34 |
-
url = {https://arxiv.org/abs/2606.20545}
|
| 35 |
-
}
|
| 36 |
-
```
|
|
|
|
| 1 |
# WRBench Human Annotations Datasheet
|
| 2 |
|
| 3 |
+
Generated: `2026-07-07T11:43:39+00:00`.
|
| 4 |
|
| 5 |
+
The dataset contains public, release-safe human annotation metadata. It does not
|
| 6 |
+
include internal filesystem paths, IP addresses, email addresses, or raw
|
| 7 |
+
annotator labels (`p1`, `p3`, `p4`).
|
| 8 |
|
| 9 |
+
The 2026-07-07 update adds 585 completed current-benchmark clean recheck pairs.
|
| 10 |
+
Rows that were current-vs-legacy evidence, single-video provenance checks, or
|
| 11 |
+
incomplete three-annotator reviews are not promoted to clean labels.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
original/annotation_to_video.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
original/current_review_consensus.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
original/current_review_status.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
original/current_review_submissions.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
original/exclusions.jsonl
CHANGED
|
@@ -1483,3 +1483,127 @@
|
|
| 1483 |
{"exclusion_categories": ["current_video_changed_after_latest_human_verdict"], "pair_id": "wrbench-mp1500-1240"}
|
| 1484 |
{"exclusion_categories": ["current_video_changed_after_latest_human_verdict"], "pair_id": "wrbench-mp1500-1339"}
|
| 1485 |
{"exclusion_categories": ["current_video_changed_after_latest_human_verdict"], "pair_id": "wrbench-mp1500-1414"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1483 |
{"exclusion_categories": ["current_video_changed_after_latest_human_verdict"], "pair_id": "wrbench-mp1500-1240"}
|
| 1484 |
{"exclusion_categories": ["current_video_changed_after_latest_human_verdict"], "pair_id": "wrbench-mp1500-1339"}
|
| 1485 |
{"exclusion_categories": ["current_video_changed_after_latest_human_verdict"], "pair_id": "wrbench-mp1500-1414"}
|
| 1486 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0183"}
|
| 1487 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0211"}
|
| 1488 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0212"}
|
| 1489 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0213"}
|
| 1490 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0214"}
|
| 1491 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0215"}
|
| 1492 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0216"}
|
| 1493 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0273"}
|
| 1494 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0274"}
|
| 1495 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0275"}
|
| 1496 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0276"}
|
| 1497 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0283"}
|
| 1498 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0284"}
|
| 1499 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0285"}
|
| 1500 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0286"}
|
| 1501 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0287"}
|
| 1502 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0288"}
|
| 1503 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0289"}
|
| 1504 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0290"}
|
| 1505 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0291"}
|
| 1506 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0292"}
|
| 1507 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0293"}
|
| 1508 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0294"}
|
| 1509 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0307"}
|
| 1510 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0308"}
|
| 1511 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0309"}
|
| 1512 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0310"}
|
| 1513 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0311"}
|
| 1514 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0312"}
|
| 1515 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0313"}
|
| 1516 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0314"}
|
| 1517 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0317"}
|
| 1518 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0328"}
|
| 1519 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0349"}
|
| 1520 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0350"}
|
| 1521 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0353"}
|
| 1522 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0354"}
|
| 1523 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0369"}
|
| 1524 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0370"}
|
| 1525 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0395"}
|
| 1526 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0396"}
|
| 1527 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0427"}
|
| 1528 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0428"}
|
| 1529 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0481"}
|
| 1530 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0482"}
|
| 1531 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0509"}
|
| 1532 |
+
{"exclusion_categories": ["incomplete_recheck"], "pair_id": "doubtful-current-benchmark-0510"}
|
| 1533 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0633"}
|
| 1534 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0634"}
|
| 1535 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0635"}
|
| 1536 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0636"}
|
| 1537 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0637"}
|
| 1538 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0638"}
|
| 1539 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0639"}
|
| 1540 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0640"}
|
| 1541 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0641"}
|
| 1542 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0642"}
|
| 1543 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0643"}
|
| 1544 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0644"}
|
| 1545 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0645"}
|
| 1546 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0646"}
|
| 1547 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0647"}
|
| 1548 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0648"}
|
| 1549 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0649"}
|
| 1550 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0650"}
|
| 1551 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0651"}
|
| 1552 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0652"}
|
| 1553 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0653"}
|
| 1554 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0654"}
|
| 1555 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0655"}
|
| 1556 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0656"}
|
| 1557 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0657"}
|
| 1558 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0658"}
|
| 1559 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0659"}
|
| 1560 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0660"}
|
| 1561 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0661"}
|
| 1562 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0662"}
|
| 1563 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0663"}
|
| 1564 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0664"}
|
| 1565 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0665"}
|
| 1566 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0666"}
|
| 1567 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0667"}
|
| 1568 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0668"}
|
| 1569 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0669"}
|
| 1570 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0670"}
|
| 1571 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0671"}
|
| 1572 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0672"}
|
| 1573 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0673"}
|
| 1574 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0674"}
|
| 1575 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0675"}
|
| 1576 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0676"}
|
| 1577 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0677"}
|
| 1578 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0678"}
|
| 1579 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0679"}
|
| 1580 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0680"}
|
| 1581 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0681"}
|
| 1582 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0682"}
|
| 1583 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0683"}
|
| 1584 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0684"}
|
| 1585 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0685"}
|
| 1586 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0686"}
|
| 1587 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0687"}
|
| 1588 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0688"}
|
| 1589 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0689"}
|
| 1590 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0690"}
|
| 1591 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0691"}
|
| 1592 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0692"}
|
| 1593 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0693"}
|
| 1594 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0694"}
|
| 1595 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0695"}
|
| 1596 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0696"}
|
| 1597 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0697"}
|
| 1598 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0698"}
|
| 1599 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0699"}
|
| 1600 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0700"}
|
| 1601 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0701"}
|
| 1602 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0702"}
|
| 1603 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0703"}
|
| 1604 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0704"}
|
| 1605 |
+
{"exclusion_categories": ["evidence_only_current_vs_legacy"], "pair_id": "doubtful-current-benchmark-0705"}
|
| 1606 |
+
{"exclusion_categories": ["provenance_only_single_video"], "pair_id": "doubtful-current-benchmark-0706"}
|
| 1607 |
+
{"exclusion_categories": ["provenance_only_single_video"], "pair_id": "doubtful-current-benchmark-0707"}
|
| 1608 |
+
{"exclusion_categories": ["provenance_only_single_video"], "pair_id": "doubtful-current-benchmark-0708"}
|
| 1609 |
+
{"exclusion_categories": ["provenance_only_single_video"], "pair_id": "doubtful-current-benchmark-0709"}
|
original/pairs.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
release_checks.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"generated_at": "2026-07-07T11:43:39+00:00",
|
| 3 |
+
"pairs": 1741,
|
| 4 |
+
"pair_id_unique": 1586,
|
| 5 |
+
"pair_id_duplicate_rows": 155,
|
| 6 |
+
"old_pairs": 1156,
|
| 7 |
+
"new_current_pairs": 585,
|
| 8 |
+
"annotation_to_video": 1616,
|
| 9 |
+
"exclusions": 1609,
|
| 10 |
+
"current_review_submissions": 1755,
|
| 11 |
+
"current_review_consensus": 585,
|
| 12 |
+
"current_review_status": 709,
|
| 13 |
+
"checks": {
|
| 14 |
+
"clean_current_pairs": 585,
|
| 15 |
+
"current_review_submissions": 1755,
|
| 16 |
+
"current_review_consensus": 585,
|
| 17 |
+
"current_review_status": 709,
|
| 18 |
+
"missing_endpoint_paths": [],
|
| 19 |
+
"missing_endpoint_path_count": 0,
|
| 20 |
+
"bad_subtypes": {},
|
| 21 |
+
"status_counts": {
|
| 22 |
+
"clean_label_current_recheck": 585,
|
| 23 |
+
"incomplete_recheck": 47,
|
| 24 |
+
"evidence_only_current_vs_legacy": 73,
|
| 25 |
+
"provenance_only_single_video": 4
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
"privacy_issues": []
|
| 29 |
+
}
|