adambuttrick commited on
Commit
84e1005
·
1 Parent(s): 0cbb7ed

Add provenance tracking with asserted/mined configs

Browse files
README.md CHANGED
@@ -17,10 +17,19 @@ pretty_name: Crossref arXiv Citations
17
  size_categories:
18
  - 100K<n<1M
19
  configs:
20
- - config_name: default
21
  data_files:
22
  - split: train
23
- path: data/arxiv_citations_valid.parquet
 
 
 
 
 
 
 
 
 
24
  ---
25
 
26
  # Crossref arXiv Citations
@@ -31,12 +40,26 @@ A dataset of arXiv preprints and their citations extracted from Crossref metadat
31
 
32
  This dataset maps arXiv works to the works in Crossref that cite them. Each record represents an arXiv preprint with all known citations from Crossref-registered works.
33
 
34
- ### Dataset Statistics
 
 
 
 
 
 
35
 
36
- | Metric | Value |
37
- |--------|-------|
38
- | arXiv works | 923,302 |
39
- | Total citations | 5,121,638 |
 
 
 
 
 
 
 
 
40
 
41
  ## Data Schema
42
 
@@ -55,14 +78,18 @@ Each citing work object in `cited_by` contains:
55
  | Field | Type | Description |
56
  |-------|------|-------------|
57
  | `doi` | string | DOI of the citing work |
 
58
  | `matches` | array | List of reference matches from this citing work |
59
 
60
- Each match object in `matches` contains:
61
 
62
- | Field | Type | Description |
63
- |-------|------|-------------|
64
- | `raw_match` | string | The original text that matched the arXiv reference |
65
- | `reference` | string | The full reference object from the citing work's metadata (JSON-encoded) |
 
 
 
66
 
67
  ### Example Record
68
 
@@ -75,10 +102,15 @@ Each match object in `matches` contains:
75
  "cited_by": [
76
  {
77
  "doi": "10.1016/j.jhydrol.2025.134709",
 
78
  "matches": [
79
  {
 
80
  "raw_match": "arXiv.1412.6980",
81
- "reference": "{\"key\": \"10.1016/j.jhydrol.2025.134709_b0175\", \"unstructured\": \"Kingma, D.P., & Ba, J. (2014), Adam: A Method for Stochastic Optimization...\"}"
 
 
 
82
  }
83
  ]
84
  }
@@ -86,12 +118,11 @@ Each match object in `matches` contains:
86
  }
87
  ```
88
 
89
-
90
  ## Extraction Process
91
 
92
  ### 1. Reference Extraction
93
 
94
- arXiv references were extracted from the Crossref January 2025 Public Data File by scanning reference metadata for arXiv identifiers. The extraction attempts to detect multiple reference formats:
95
 
96
  - arXiv IDs, including legacy formats: `arXiv:1412.6980`, `arXiv: 2206.15325`, `arXiv:cs.DM/9910013`
97
  - arXiv DOIs: `10.48550/arXiv.1412.6980`
@@ -99,24 +130,34 @@ arXiv references were extracted from the Crossref January 2025 Public Data File
99
 
100
  Identifiers are normalized (lowercase, version suffixes removed) and deduplicated per citing work.
101
 
102
- ### 2. Validation
 
 
 
 
 
 
 
 
103
 
104
  The extracted arXiv DOIs were validated through a two-stage process:
105
 
106
  1. DOIs were checked against the DataCite metadata for the arXiv record set (~2.8M records)
107
- 2. For DOIs not found in DataCite, HTTP HEAD requests to `doi.org` were used verify resolution
108
 
109
  Only arXiv works with valid, resolvable DOIs are included in this dataset.
110
 
111
  ## Data Sources
112
 
113
- - January 2026 Crossref and DataCite data files were used for DOI validation
 
114
  - Extraction tools: [cometadata/crossref-arxiv-citation-extraction](https://github.com/cometadata/crossref-arxiv-citation-extraction)
115
 
116
  ## Limitations
117
 
118
  - Only includes citations registered in Crossref metadata
119
  - Reference parsing depends on successful identifier extraction from unstructured references
 
120
 
121
  ## License
122
 
 
17
  size_categories:
18
  - 100K<n<1M
19
  configs:
20
+ - config_name: all
21
  data_files:
22
  - split: train
23
+ path: data/all.parquet
24
+ default: true
25
+ - config_name: asserted
26
+ data_files:
27
+ - split: train
28
+ path: data/asserted.parquet
29
+ - config_name: mined
30
+ data_files:
31
+ - split: train
32
+ path: data/mined.parquet
33
  ---
34
 
35
  # Crossref arXiv Citations
 
40
 
41
  This dataset maps arXiv works to the works in Crossref that cite them. Each record represents an arXiv preprint with all known citations from Crossref-registered works.
42
 
43
+ ### Dataset Configurations
44
+
45
+ | Config | Description | arXiv Works | Citations |
46
+ |--------|-------------|-------------|-----------|
47
+ | `all` | All validated citations (default) | 923,302 | 5,121,642 |
48
+ | `asserted` | Citations where DOI was explicitly provided by publisher or matched by Crossref | 110,030 | 308,474 |
49
+ | `mined` | Citations where DOI was extracted from unstructured text | 891,035 | 4,813,168 |
50
 
51
+ ### Loading the Dataset
52
+
53
+ ```python
54
+ from datasets import load_dataset
55
+
56
+ # Load default (all citations)
57
+ dataset = load_dataset("cometadata/crossref-arxiv-citations")
58
+
59
+ # Load specific config
60
+ asserted = load_dataset("cometadata/crossref-arxiv-citations", "asserted")
61
+ mined = load_dataset("cometadata/crossref-arxiv-citations", "mined")
62
+ ```
63
 
64
  ## Data Schema
65
 
 
78
  | Field | Type | Description |
79
  |-------|------|-------------|
80
  | `doi` | string | DOI of the citing work |
81
+ | `provenance` | string | How the citation was obtained (see below) |
82
  | `matches` | array | List of reference matches from this citing work |
83
 
84
+ ### Provenance Values
85
 
86
+ Each citation includes a `provenance` field indicating how the DOI was obtained:
87
+
88
+ - `publisher` - DOI was explicitly provided by the publisher in the reference metadata
89
+ - `crossref` - DOI was matched/validated by Crossref
90
+ - `mined` - DOI was extracted from unstructured text or other fields
91
+
92
+ The `asserted` config contains only `publisher` and `crossref` provenance citations (higher confidence). The `mined` config contains only `mined` provenance citations.
93
 
94
  ### Example Record
95
 
 
102
  "cited_by": [
103
  {
104
  "doi": "10.1016/j.jhydrol.2025.134709",
105
+ "provenance": "mined",
106
  "matches": [
107
  {
108
+ "provenance": "mined",
109
  "raw_match": "arXiv.1412.6980",
110
+ "reference": {
111
+ "key": "10.1016/j.jhydrol.2025.134709_b0175",
112
+ "unstructured": "Kingma, D.P., & Ba, J. (2014), Adam: A Method for Stochastic Optimization..."
113
+ }
114
  }
115
  ]
116
  }
 
118
  }
119
  ```
120
 
 
121
  ## Extraction Process
122
 
123
  ### 1. Reference Extraction
124
 
125
+ arXiv references were extracted from the Crossref January 2025 Public Data File by scanning reference metadata for arXiv identifiers. The extraction detects multiple reference formats:
126
 
127
  - arXiv IDs, including legacy formats: `arXiv:1412.6980`, `arXiv: 2206.15325`, `arXiv:cs.DM/9910013`
128
  - arXiv DOIs: `10.48550/arXiv.1412.6980`
 
130
 
131
  Identifiers are normalized (lowercase, version suffixes removed) and deduplicated per citing work.
132
 
133
+ ### 2. Provenance Tracking
134
+
135
+ For each extracted citation, the provenance is determined by checking:
136
+
137
+ 1. If the reference has an explicit `DOI` field with `doi-asserted-by: publisher` -> `publisher`
138
+ 2. If the reference has an explicit `DOI` field with `doi-asserted-by: crossref` -> `crossref`
139
+ 3. Otherwise (DOI extracted from unstructured text) -> `mined`
140
+
141
+ ### 3. Validation
142
 
143
  The extracted arXiv DOIs were validated through a two-stage process:
144
 
145
  1. DOIs were checked against the DataCite metadata for the arXiv record set (~2.8M records)
146
+ 2. For DOIs not found in DataCite, HTTP HEAD requests to `doi.org` were used to verify resolution
147
 
148
  Only arXiv works with valid, resolvable DOIs are included in this dataset.
149
 
150
  ## Data Sources
151
 
152
+ - January 2025 Crossref Public Data File
153
+ - January 2025 DataCite Public Data File
154
  - Extraction tools: [cometadata/crossref-arxiv-citation-extraction](https://github.com/cometadata/crossref-arxiv-citation-extraction)
155
 
156
  ## Limitations
157
 
158
  - Only includes citations registered in Crossref metadata
159
  - Reference parsing depends on successful identifier extraction from unstructured references
160
+ - The `mined` subset may contain lower-quality matches from noisy reference text
161
 
162
  ## License
163
 
data/{arxiv_citations_valid.parquet → all.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1affa3a01dc3f1627f3a72f17e18736c3107ceaf23e928a2eb12ebb6b66c52b9
3
- size 467658282
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00d8e9734bed730e1a7bb32d539ca8a85354871637224617b24beaa5038466d5
3
+ size 257058021
data/asserted.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e58855bd6df1ddb75ee7285205c741f94d3f7fd56cbb993beaca98c3d157bbcf
3
+ size 14657320
data/mined.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96f951354be9ac323e4739b566c8c4c1cae7f81a66fa474471d5c39bdfc4a2ce
3
+ size 244546421