adambuttrick commited on
Commit
343fe4e
·
verified ·
1 Parent(s): e3e8aaa

Update from Crossref snapshot 2026-07 (artifact bb023ebb89ae2e7735d94645d6d42a777ebf0a1a5ae346b6ca7520f9b803137e)

Browse files
README.md ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - feature-extraction
5
+ language:
6
+ - en
7
+ tags:
8
+ - datacite
9
+ - crossref
10
+ - citations
11
+ - scholarly-communications
12
+ - bibliometrics
13
+ - doi
14
+ - landing-pages
15
+ pretty_name: Crossref DataCite Citations
16
+ size_categories:
17
+ - 1M<n<10M
18
+ configs:
19
+ - config_name: all
20
+ data_files:
21
+ - split: train
22
+ path: data/all/*.parquet
23
+ default: true
24
+ - config_name: asserted
25
+ data_files:
26
+ - split: train
27
+ path: data/asserted/*.parquet
28
+ - config_name: mined
29
+ data_files:
30
+ - split: train
31
+ path: data/mined/*.parquet
32
+ - config_name: ambiguous_urls
33
+ data_files:
34
+ - split: train
35
+ path: data/ambiguous_urls/*.parquet
36
+ ---
37
+
38
+ # Crossref DataCite Citations
39
+
40
+ A dataset of DataCite-registered works and the Crossref-registered works that
41
+ cite them, extracted from Crossref reference metadata and confirmed against
42
+ the DataCite monthly data file.
43
+
44
+ ## Dataset Description
45
+
46
+ Each record in the citation configurations is one DataCite DOI together with
47
+ every confirmed citing work found in Crossref reference metadata. A reference
48
+ is confirmed when it carries a DOI registered in DataCite, an arXiv
49
+ identifier whose arXiv DOI is registered in DataCite, or a landing-page URL
50
+ that is the registered URL of exactly one DataCite record.
51
+
52
+ Built from the Crossref Metadata Plus monthly snapshot `2026-07` and the
53
+ DataCite monthly data file `2026-07` with
54
+ [crossref-citation-extraction](https://github.com/cometadata/crossref-arxiv-citation-extraction)
55
+ version 2.2.0.
56
+
57
+ ### Provenance and Ambiguity Policy
58
+
59
+ - `publisher` and `crossref` matches come from references whose DOI was
60
+ asserted by the publisher or matched by Crossref. `mined` matches were
61
+ extracted from unstructured reference text: DOIs, arXiv identifiers, and
62
+ landing-page URLs.
63
+ - A landing-page URL registered by more than one DataCite record never
64
+ produces a citation. Such references are published separately in the
65
+ `ambiguous_urls` configuration with every candidate DOI and are excluded
66
+ from every citation count.
67
+ - Counts are recomputed per configuration: a citing work appears in a
68
+ configuration only with its matches of that configuration's provenances.
69
+
70
+ ### Dataset Configurations
71
+
72
+ | Config | Description | Cited Works | Citing Works | Reference Matches |
73
+ |--------|-------------|-------------|--------------|-------------------|
74
+ | `all` | All confirmed citations (default) | 1,715,770 | 7,426,049 | 7,515,087 |
75
+ | `asserted` | Citations whose DOI was asserted by the publisher or matched by Crossref | 582,302 | 1,269,805 | 1,277,754 |
76
+ | `mined` | Citations extracted from unstructured reference text | 1,325,905 | 6,157,532 | 6,237,333 |
77
+
78
+ The `ambiguous_urls` configuration holds 47,808 unresolved
79
+ URL references. It is evidence for downstream resolution, not citations, and
80
+ it is excluded from the counts above.
81
+
82
+ ### Build Identity
83
+
84
+ | Field | Value |
85
+ |-------|-------|
86
+ | Crossref snapshot | `2026-07` |
87
+ | DataCite release | `2026-07` |
88
+ | Run identity fingerprint | `6ef72a4272487c1b91c8481aec59b37bef7fc5b862c9f6194f3415d2a2a26d42` |
89
+ | Extractor version | `2.2.0` |
90
+ | Artifact manifest | `metadata/pipeline-manifest.json` |
91
+
92
+ The manifest lists every published file with its size and SHA-256 digest; the
93
+ SHA-256 of the manifest bytes identifies this publication.
94
+
95
+ ### Loading the Dataset
96
+
97
+ ```python
98
+ from datasets import load_dataset
99
+
100
+ dataset = load_dataset("cometadata/crossref-datacite-citations")
101
+ asserted = load_dataset("cometadata/crossref-datacite-citations", "asserted")
102
+ mined = load_dataset("cometadata/crossref-datacite-citations", "mined")
103
+ ambiguous = load_dataset("cometadata/crossref-datacite-citations", "ambiguous_urls")
104
+ ```
105
+
106
+ ## Data Schema
107
+
108
+ ### Citation Configurations (`all`, `asserted`, `mined`)
109
+
110
+ Each record contains:
111
+
112
+ | Field | Type | Description |
113
+ |-------|------|-------------|
114
+ | `doi` | string | Canonical lowercase DataCite DOI of the cited work |
115
+ | `citation_count` | integer | Number of distinct citing works in this configuration |
116
+ | `cited_by` | array | List of citing work objects |
117
+ | `reference_count` | integer | Number of confirmed reference tuples |
118
+
119
+ Each citing work object in `cited_by` contains:
120
+
121
+ | Field | Type | Description |
122
+ |-------|------|-------------|
123
+ | `doi` | string | DOI of the citing work |
124
+ | `provenance` | string | Strongest provenance among this work's matches (`publisher` > `crossref` > `mined`) |
125
+ | `matches` | array | Reference matches from this citing work, in reference order |
126
+
127
+ Each match contains:
128
+
129
+ | Field | Type | Description |
130
+ |-------|------|-------------|
131
+ | `provenance` | string | How this match was obtained (see below) |
132
+ | `match_type` | string | What was matched: `doi`, `arxiv`, `url` |
133
+ | `raw_match` | string | The exact substring that matched |
134
+ | `reference` | struct | The Crossref reference metadata (string-valued fields; absent keys are null) |
135
+
136
+ ### `ambiguous_urls`
137
+
138
+ | Field | Type | Description |
139
+ |-------|------|-------------|
140
+ | `citing_doi` | string | DOI of the citing work |
141
+ | `ref_index` | integer | Position of the reference in the citing work's reference list |
142
+ | `url` | string | Normalized landing-page URL that matched several DataCite records |
143
+ | `raw_match` | string | The exact substring that matched |
144
+ | `candidate_dois` | array | Every DataCite DOI registered with this landing-page URL |
145
+ | `reference` | struct | The Crossref reference metadata (string-valued fields; absent keys are null) |
146
+
147
+ ### Provenance Values
148
+
149
+ - `publisher` - the reference carries an explicit DataCite DOI with `doi-asserted-by: publisher`
150
+ - `crossref` - the reference carries an explicit DataCite DOI with `doi-asserted-by: crossref`
151
+ - `mined` - the identifier was extracted from unstructured reference text
152
+
153
+ The `asserted` config contains only `publisher` and `crossref` matches; the
154
+ `mined` config contains only `mined` matches.
155
+
156
+ ## Extraction Process
157
+
158
+ References in the Crossref snapshot are scanned for DOIs, arXiv identifiers,
159
+ and landing-page URLs. Each candidate is normalized and looked up in an index
160
+ built from the DataCite monthly data file `2026-07`: DOIs must be
161
+ registered in DataCite, arXiv identifiers must map to a registered arXiv DOI,
162
+ and URLs must equal the registered landing page of exactly one record. URLs
163
+ registered by several records are recorded as ambiguous evidence instead.
164
+
165
+ ## Data Sources
166
+
167
+ - Crossref Metadata Plus monthly snapshot `2026-07`
168
+ - DataCite monthly data file `2026-07`
169
+ - Extraction tools: [cometadata/crossref-arxiv-citation-extraction](https://github.com/cometadata/crossref-arxiv-citation-extraction)
170
+
171
+ ## Limitations
172
+
173
+ - Only citations registered in Crossref reference metadata are included.
174
+ - Only DOIs and landing-page URLs registered in DataCite are matched; works
175
+ registered with other agencies are not represented.
176
+ - Landing-page matching uses the URLs registered in the DataCite release
177
+ `2026-07`; earlier or historical URLs of a record are not
178
+ matched.
179
+ - The dataset reflects one Crossref snapshot and one DataCite release; each
180
+ publication replaces the previous contents rather than accumulating them.
181
+ - References whose URL is registered by several DataCite records appear only
182
+ in `ambiguous_urls` and are never counted as citations.
183
+ - Reference parsing depends on successful identifier extraction from
184
+ unstructured references; the `mined` subset may contain lower-quality
185
+ matches from noisy reference text.
186
+
187
+ ## License
188
+
189
+ This dataset is released under
190
+ [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/).
191
+
192
+ ## Citation
193
+
194
+ ```bibtex
195
+ @dataset{crossref_datacite_citations,
196
+ title = {Crossref DataCite Citations},
197
+ author = {Cometadata},
198
+ publisher = {Hugging Face},
199
+ url = {https://huggingface.co/datasets/cometadata/crossref-datacite-citations}
200
+ }
201
+ ```
data/all/part-00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64d83ab74fed34310049736e863dd6856c5c911e0cf5725278909da0b867f74c
3
+ size 103526594
data/all/part-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bcf1f67ee1c3648f20d51c4a93b3598f67d66013611f29ab50ef305d2a00e75
3
+ size 171893406
data/all/part-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4b5295b6c1c22614d93159eed14efedf469bb1a3fef0709162384f9c3a39ad6
3
+ size 198378480
data/ambiguous_urls/part-00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:509203095012dd50f03ed53dc83f1dd92a821de67063d89b65e630158dd3a452
3
+ size 6455569
data/asserted/part-00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d58ab6b2aa4570267993771f95951c882c67ebd818167abba4e99e011c3a8f4
3
+ size 84805297
data/mined/part-00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9705ffe69e969d701c73631c5e9fb82494f0e7eae27484a92d6415aa9dc3be09
3
+ size 102996277
data/mined/part-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b4142e3d66fb34b945500d0a14589c464c555bd5b3fe24f4233f4fbcb096287
3
+ size 202520237
data/mined/part-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f61ad8d13040bdb8c1bffbb8bd140162ffdf343874478e533b08bb6f69b7027e
3
+ size 83027328
metadata/pipeline-manifest.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"ambiguity_rows":47808,"config_files":{"all":["data/all/part-00000.parquet","data/all/part-00001.parquet","data/all/part-00002.parquet"],"ambiguous_urls":["data/ambiguous_urls/part-00000.parquet"],"asserted":["data/asserted/part-00000.parquet"],"mined":["data/mined/part-00000.parquet","data/mined/part-00001.parquet","data/mined/part-00002.parquet"]},"counts":{"all":{"citations":7426049,"references":7515087,"works":1715770},"asserted":{"citations":1269805,"references":1277754,"works":582302},"mined":{"citations":6157532,"references":6237333,"works":1325905}},"dataset_kind":"datacite","extractor_version":"2.2.0","files":{"README.md":{"sha256":"deb8df2f71c705257396893d05c058bfbd2378358969c8790ebe2cedcd98ee75","size":7749},"data/all/part-00000.parquet":{"sha256":"64d83ab74fed34310049736e863dd6856c5c911e0cf5725278909da0b867f74c","size":103526594},"data/all/part-00001.parquet":{"sha256":"2bcf1f67ee1c3648f20d51c4a93b3598f67d66013611f29ab50ef305d2a00e75","size":171893406},"data/all/part-00002.parquet":{"sha256":"c4b5295b6c1c22614d93159eed14efedf469bb1a3fef0709162384f9c3a39ad6","size":198378480},"data/ambiguous_urls/part-00000.parquet":{"sha256":"509203095012dd50f03ed53dc83f1dd92a821de67063d89b65e630158dd3a452","size":6455569},"data/asserted/part-00000.parquet":{"sha256":"1d58ab6b2aa4570267993771f95951c882c67ebd818167abba4e99e011c3a8f4","size":84805297},"data/mined/part-00000.parquet":{"sha256":"9705ffe69e969d701c73631c5e9fb82494f0e7eae27484a92d6415aa9dc3be09","size":102996277},"data/mined/part-00001.parquet":{"sha256":"1b4142e3d66fb34b945500d0a14589c464c555bd5b3fe24f4233f4fbcb096287","size":202520237},"data/mined/part-00002.parquet":{"sha256":"f61ad8d13040bdb8c1bffbb8bd140162ffdf343874478e533b08bb6f69b7027e","size":83027328}},"identity":{"archive_sha256":"ad83bc4b0b5a889933ad78b455a24f7ef8c793e1ad8bde595eacd3c6cd632669","arxiv_publish_version":1,"bundle_manifest_sha256":"3d96f98000712d5505e03f670f664255789e0a47cac5fc52d6a99f5728cea0bc","datacite_publish_version":2,"datacite_release":"2026-07","extraction_mode":"datacite","extraction_version":2,"index_version":2,"normalization_version":1,"partition_algorithm":"fnv1a64-v1","partitions":256,"source_inventory_sha256":"8698c3ff681333a96291b05ea0478220e1a1198f133ab33da164f36b2e0de359","source_tree_sha256":"4d6b70aae80690cb40b1b796801e8f8bbd4fcc959d9184fe84aa8dfd9f03b09b"},"kind":"citation-dataset","manifest_version":2,"publication_schema_version":2,"snapshot_id":"2026-07"}