File size: 1,428 Bytes
10a22dc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | ---
pretty_name: PaperFit Benchmark
license: other
size_categories:
- 100<n<1K
configs:
- config_name: cases
data_files:
- split: test
path: metadata/cases.jsonl
- config_name: perturbations
data_files:
- split: test
path: metadata/perturbations.jsonl
---
# PaperFit Benchmark
This dataset packages the PaperFit benchmark as a Hugging Face dataset repo.
## Included
- `metadata/cases.jsonl`: one row per benchmark case.
- `metadata/perturbations.jsonl`: one row per applied perturbation.
- Raw case archives are stored under `raw/<venue>/<paper_id>.tar.gz`.
- `metadata/benchmark_generation_report.json`: sanitized generation summary.
## Current Snapshot
- Cases: 200
- Perturbation rows: 761
- Selected cases in source report: 200
- Generated cases in source report: 180
- Skipped existing cases in source report: 20
- Failed cases in source report: 0
## Loading
```python
from datasets import load_dataset
cases = load_dataset("xuxinglong/paperfit-benchmark", "cases", split="test")
perturbations = load_dataset("xuxinglong/paperfit-benchmark", "perturbations", split="test")
```
## Notes
- Published metadata has local absolute paths removed.
- This staging export excludes macOS `._*` files and LaTeX build artifacts such as `.aux`, `.fls`, `.fdb_latexmk`, `.log`, `.out`, `.bbl`, and `.blg`.
- Check redistribution rights for source papers, figures, and templates before making the repo public.
|