adambuttrick commited on
Commit
a6ece03
·
verified ·
1 Parent(s): ba780d0

Add dataset card with documentation and multi-config definition

Browse files
Files changed (1) hide show
  1. README.md +203 -0
README.md ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - metadata
7
+ - scholarly-communication
8
+ - datacite
9
+ - doi
10
+ - enrichment
11
+ - comet
12
+ pretty_name: COMET DataCite Enrichment Layer (Ingest Format)
13
+ size_categories:
14
+ - 10M<n<100M
15
+ configs:
16
+ - config_name: author_affiliations
17
+ data_files:
18
+ - split: train
19
+ path: author_affiliations_enrichments_datacite_format.jsonl
20
+ default: true
21
+ - config_name: preprint_matching
22
+ data_files:
23
+ - split: train
24
+ path: preprint_matching_enrichments_datacite_format.jsonl
25
+ - config_name: resource_type
26
+ data_files:
27
+ - split: train
28
+ path: resource_type_enrichments_datacite_format.jsonl
29
+ ---
30
+
31
+ # COMET DataCite Enrichment Layer (Ingest Format)
32
+
33
+ This dataset contains metadata enrichment records in [DataCite](https://datacite.org/) ingest format, produced by the [COMET](https://cometadata.org/) (Collaborative Metadata) initiative. Each record represents a single metadata enrichment to be applied to an existing DataCite record, identified by DOI.
34
+
35
+ The enrichments were generated against the **February 2026** DataCite data files using the [datacite-enrichment](https://github.com/adambuttrick/datacite-enrichment) tool.
36
+
37
+ ## Dataset Configs
38
+
39
+ This dataset contains three configs (subsets), one for each enrichment type:
40
+
41
+ | Config | Records | Size | Description |
42
+ |--------|---------|------|-------------|
43
+ | `author_affiliations` | 8,963,119 | 8.8 GB | Institutional affiliation enrichments for creator records |
44
+ | `preprint_matching` | 812,958 | 526 MB | Links between arXiv preprints and their published versions |
45
+ | `resource_type` | 3,338,250 | 2.1 GB | Reclassifications of generic resource types to specific types |
46
+
47
+ ### Loading a specific config
48
+
49
+ ```python
50
+ from datasets import load_dataset
51
+
52
+ # Load author affiliations enrichments
53
+ ds = load_dataset("cometadata/comet-datacite-enrichment-layer-ingest-format", "author_affiliations")
54
+
55
+ # Load preprint matching enrichments
56
+ ds = load_dataset("cometadata/comet-datacite-enrichment-layer-ingest-format", "preprint_matching")
57
+
58
+ # Load resource type enrichments
59
+ ds = load_dataset("cometadata/comet-datacite-enrichment-layer-ingest-format", "resource_type")
60
+ ```
61
+
62
+ ## Record Schema
63
+
64
+ Each record is a JSON object with the following fields:
65
+
66
+ | Field | Type | Description |
67
+ |-------|------|-------------|
68
+ | `doi` | string | The DOI of the DataCite record to be enriched |
69
+ | `contributors` | array | Provenance: who produced this enrichment (COMET as Producer) |
70
+ | `resources` | array | Provenance: related project DOI and source dataset reference |
71
+ | `action` | string | The enrichment action: `insert`, `updateChild`, or `update` |
72
+ | `field` | string | The DataCite metadata field being enriched |
73
+ | `originalValue` | object | The original value being modified (present for `updateChild` and `update` actions) |
74
+ | `enrichedValue` | object | The new or updated value to apply |
75
+
76
+ ## Config Details
77
+
78
+ ### author_affiliations
79
+
80
+ Adds institutional affiliations to creator records on arXiv preprints registered in DataCite.
81
+
82
+ - **Action**: `updateChild` — finds and updates a specific creator within the `creators` array
83
+ - **Field**: `creators`
84
+ - **Source data**: [cometadata/arxiv-author-affiliations-matched-ror-ids](https://huggingface.co/datasets/cometadata/arxiv-author-affiliations-matched-ror-ids)
85
+ - **Project DOI**: [10.82461/160e-8q92](https://doi.org/10.82461/160e-8q92)
86
+
87
+ Example record:
88
+ ```json
89
+ {
90
+ "doi": "10.48550/arxiv.1109.3791",
91
+ "contributors": [
92
+ {"name": "COMET", "contributorType": "Producer", "nameType": "Organizational"}
93
+ ],
94
+ "resources": [
95
+ {"relatedIdentifier": "http://doi.org/10.82461/160e-8q92", "relatedIdentifierType": "DOI", "relationType": "IsDocumentedBy", "resourceTypeGeneral": "Project"},
96
+ {"relatedIdentifier": "https://huggingface.co/datasets/cometadata/arxiv-author-affiliations-matched-ror-ids", "relatedIdentifierType": "URL", "relationType": "IsDerivedFrom", "resourceTypeGeneral": "Dataset"}
97
+ ],
98
+ "action": "updateChild",
99
+ "field": "creators",
100
+ "originalValue": {
101
+ "nameType": "Personal",
102
+ "givenName": "Fangfei",
103
+ "familyName": "Zhou",
104
+ "name": "Zhou, Fangfei"
105
+ },
106
+ "enrichedValue": {
107
+ "nameType": "Personal",
108
+ "givenName": "Fangfei",
109
+ "familyName": "Zhou",
110
+ "name": "Zhou, Fangfei",
111
+ "affiliation": [
112
+ {"name": "Northeastern University"}
113
+ ]
114
+ }
115
+ }
116
+ ```
117
+
118
+ ### preprint_matching
119
+
120
+ Links arXiv preprints to their published versions by inserting `relatedIdentifiers` entries with the `IsVersionOf` relation type.
121
+
122
+ - **Action**: `insert` — appends a new entry to the `relatedIdentifiers` array
123
+ - **Field**: `relatedIdentifiers`
124
+ - **Source data**: [cometadata/arxiv-preprint-matching-results](https://huggingface.co/datasets/cometadata/arxiv-preprint-matching-results)
125
+ - **Project DOI**: [10.82461/m8a8-m211](https://doi.org/10.82461/m8a8-m211)
126
+
127
+ Example record:
128
+ ```json
129
+ {
130
+ "doi": "10.48550/arxiv.2302.11570",
131
+ "contributors": [
132
+ {"name": "COMET", "contributorType": "Producer", "nameType": "Organizational"}
133
+ ],
134
+ "resources": [
135
+ {"relatedIdentifier": "10.82461/m8a8-m211", "relatedIdentifierType": "DOI", "relationType": "IsDocumentedBy", "resourceTypeGeneral": "Project"},
136
+ {"relatedIdentifier": "https://huggingface.co/datasets/cometadata/arxiv-preprint-matching-results", "relatedIdentifierType": "DOI", "relationType": "IsDerivedFrom", "resourceTypeGeneral": "Dataset"}
137
+ ],
138
+ "action": "insert",
139
+ "field": "relatedIdentifiers",
140
+ "enrichedValue": {
141
+ "relatedIdentifier": "10.58530/2024/0038",
142
+ "relatedIdentifierType": "DOI",
143
+ "relationType": "IsVersionOf"
144
+ }
145
+ }
146
+ ```
147
+
148
+ ### resource_type
149
+
150
+ Reclassifies DataCite records that have a generic `resourceTypeGeneral` of "Text" to more specific types such as `JournalArticle`, `Preprint`, etc., based on procedural analysis.
151
+
152
+ - **Action**: `update` — replaces the entire `types` field
153
+ - **Field**: `types`
154
+ - **Source data**: [cometadata/datacite-procedural-resource-type-general-reclassifications](https://huggingface.co/datasets/cometadata/datacite-procedural-resource-type-general-reclassifications)
155
+ - **Project DOI**: [10.82461/bpzr-jd55](https://doi.org/10.82461/bpzr-jd55)
156
+
157
+ Example record:
158
+ ```json
159
+ {
160
+ "doi": "10.5281/zenodo.15414",
161
+ "contributors": [
162
+ {"name": "COMET", "contributorType": "Producer", "nameType": "Organizational"}
163
+ ],
164
+ "resources": [
165
+ {"relatedIdentifier": "10.82461/bpzr-jd55", "relatedIdentifierType": "DOI", "relationType": "IsDocumentedBy", "resourceTypeGeneral": "Project"},
166
+ {"relatedIdentifier": "https://huggingface.co/datasets/cometadata/datacite-procedural-resource-type-general-reclassifications", "relatedIdentifierType": "URL", "relationType": "IsDerivedFrom", "resourceTypeGeneral": "Dataset"}
167
+ ],
168
+ "action": "update",
169
+ "field": "types",
170
+ "originalValue": {"resourceTypeGeneral": "Text"},
171
+ "enrichedValue": {"resourceTypeGeneral": "JournalArticle"}
172
+ }
173
+ ```
174
+
175
+ ## How These Files Were Generated
176
+
177
+ These enrichment records were produced using the [datacite-enrichment](https://github.com/adambuttrick/datacite-enrichment) tool, which:
178
+
179
+ 1. Takes source enrichment data (from the datasets linked above) and a YAML configuration file defining field mappings, filters, and provenance metadata
180
+ 2. Converts it to a standardized enrichment format using domain-specific transformers (one per enrichment type)
181
+ 3. Produces records that carry full provenance tracking: contributor info (COMET as Producer), references to the source dataset and project DOI, and original/enriched values
182
+
183
+ The conversion was run against the **February 2026** DataCite PID Graph data files. Each record in this dataset is ready to be applied to its corresponding DataCite record via the tool's merge functionality, or ingested directly by DataCite.
184
+
185
+ ### Generation commands
186
+
187
+ ```bash
188
+ # Preprint matching
189
+ datacite-enrich convert preprint_matches.json configs/preprint_matching.yaml \
190
+ -r datacite_records.jsonl.gz -o preprint_matching_enrichments_datacite_format.jsonl
191
+
192
+ # Author affiliations
193
+ datacite-enrich convert author_affiliations.jsonl configs/author_affiliations.yaml \
194
+ -r datacite_records.jsonl.gz -o author_affiliations_enrichments_datacite_format.jsonl
195
+
196
+ # Resource type
197
+ datacite-enrich convert resource_type_reclassifications.json configs/resource_type.yaml \
198
+ -r datacite_records.jsonl.gz -o resource_type_enrichments_datacite_format.jsonl
199
+ ```
200
+
201
+ ## License
202
+
203
+ This dataset is released under [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/).