File size: 2,007 Bytes
4fea62c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
license: mit
task_categories:
  - text-classification
  - fact-checking
language:
  - en
tags:
  - citation-verification
  - hallucination-detection
  - scientific-integrity
  - bayesian-scoring
  - reference-checking
size_categories:
  - 10K<n<100K
---

# IntegriRef-Bench

Benchmark dataset for multi-level reference integrity verification, accompanying the IntegriRef framework.

## Dataset Splits

| Split | Rows | Description |
|-------|------|-------------|
| `reference_verification` | 1,926 | Golden benchmark + crawled verification cases (hallucinated, real, chimera, retracted) |
| `signal_unit_tests` | 403 | Per-signal unit tests for 14 Bayesian signal types |
| `l1_intent` | 20 | Citation intent classification test pairs |
| `l2_nli` | 20 | Claim-evidence NLI alignment test pairs |
| `graph_anomaly` | 3,030 | Citation graph anomaly cases (rings, temporal, orphan clusters) |
| `retracted_papers` | 6,391 | Retracted papers from Crossref + PubMed with real controls |
| **Total** | **11,790** | |

## Usage

```python
from datasets import load_dataset

ds = load_dataset("Geoffrey-Wang/IntegriRef-Bench")

# Or load a specific split
ref_ver = load_dataset("Geoffrey-Wang/IntegriRef-Bench", data_files="reference_verification.jsonl")
```

## Sources

- **Retracted papers**: Crossref `update-to` retraction markers + PubMed retraction notices
- **Hallucinated references**: Programmatically generated with verified non-existence
- **Chimera references**: Real DOIs paired with swapped metadata
- **Graph anomaly cases**: Documented citation cartels (Brazilian 2009-2013, Ji-Huan He, IOP 2024)
- **Temporal anomalies**: OpenAlex citation graph analysis
- **Statistical cases**: GRIM test + statcheck from PMC Open Access full texts

## Citation

```bibtex
@inproceedings{integriref2026,
  title={IntegriRef: A Five-Layer Bayesian Framework for Cross-Domain Reference Integrity Verification},
  author={Anonymous},
  booktitle={KnowFM Workshop at ACL},
  year={2026}
}
```

## License

MIT