adambuttrick commited on
Commit
cd82076
·
verified ·
1 Parent(s): 613a012

Add normalized DataCite affiliation split

Browse files
README.md CHANGED
@@ -1,19 +1,23 @@
1
  ---
2
  license: cc0-1.0
3
  language:
4
- - multilingual
5
  pretty_name: DataCite 2026-07 Unique Affiliation Strings
6
  size_categories:
7
- - 1M<n<10M
8
  tags:
9
- - datacite
10
- - affiliations
11
- - scholarly-metadata
12
  configs:
13
- - config_name: default
14
- data_files:
15
- - split: train
16
- path: data/*.parquet
 
 
 
 
17
  ---
18
 
19
  # DataCite 2026-07 Unique Affiliation Strings
@@ -53,3 +57,14 @@ print(dataset["train"][0]["affiliation"])
53
  ## License
54
 
55
  Released under CC0 1.0, consistent with the DataCite public data source.
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc0-1.0
3
  language:
4
+ - multilingual
5
  pretty_name: DataCite 2026-07 Unique Affiliation Strings
6
  size_categories:
7
+ - 1M<n<10M
8
  tags:
9
+ - datacite
10
+ - affiliations
11
+ - scholarly-metadata
12
  configs:
13
+ - config_name: default
14
+ data_files:
15
+ - split: train
16
+ path: data/train-*.parquet
17
+ - split: normalized
18
+ path:
19
+ - data/normalized-00000-of-00002.parquet
20
+ - data/normalized-00001-of-00002.parquet
21
  ---
22
 
23
  # DataCite 2026-07 Unique Affiliation Strings
 
57
  ## License
58
 
59
  Released under CC0 1.0, consistent with the DataCite public data source.
60
+
61
+ <!-- normalized-affiliations:start -->
62
+
63
+ ## Normalized affiliations
64
+
65
+ The `normalized` split uses `comet-datacite-ascii-v1`: Unicode text is
66
+ transliterated to ASCII, lowercased, stripped of punctuation while preserving
67
+ internal whitespace, and trimmed. Empty results are excluded. Its columns are
68
+ `normalized_affiliation` (string) and `raw_affiliation_count` (uint64).
69
+
70
+ <!-- normalized-affiliations:end -->
data/normalized-00000-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90315de1dcd3675858e15fc016c83aec614813b9d1ced45afb065bfbecdac8c1
3
+ size 18215146
data/normalized-00001-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53101a2ab9f2feb5e859936a0415bca83449e0ead9dc0ada77b18b478764f6d6
3
+ size 8743367
normalization_metadata.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "generated_at": "2026-08-28T07:58:32.353806+00:00",
3
+ "normalization": {
4
+ "empty_result_policy": "exclude",
5
+ "name": "comet-datacite-ascii-v1",
6
+ "steps": [
7
+ "transliterate Unicode text to ASCII with Unidecode",
8
+ "convert letters to lowercase",
9
+ "remove punctuation while preserving internal whitespace",
10
+ "trim surrounding whitespace"
11
+ ],
12
+ "unidecode_version": "1.4.0"
13
+ },
14
+ "normalizer": {
15
+ "script": "/data/normalize_datacite.py",
16
+ "sha256": "358b51fb26741c92e801264bf3ce250ecbfd278673624e62b01a10c84f9db86d"
17
+ },
18
+ "runtime": {
19
+ "dependencies": {
20
+ "PyYAML": "6.0.3",
21
+ "Unidecode": "1.4.0",
22
+ "duckdb": "1.5.5",
23
+ "huggingface-hub": "1.28.0",
24
+ "numpy": "2.3.5",
25
+ "pyarrow": "21.0.0"
26
+ },
27
+ "python_version": "3.12.12"
28
+ },
29
+ "schema_version": 1,
30
+ "shards": [
31
+ {
32
+ "bytes": 18215146,
33
+ "path": "data/normalized-00000-of-00002.parquet",
34
+ "rows": 1000000,
35
+ "sha256": "90315de1dcd3675858e15fc016c83aec614813b9d1ced45afb065bfbecdac8c1"
36
+ },
37
+ {
38
+ "bytes": 8743367,
39
+ "path": "data/normalized-00001-of-00002.parquet",
40
+ "rows": 521265,
41
+ "sha256": "53101a2ab9f2feb5e859936a0415bca83449e0ead9dc0ada77b18b478764f6d6"
42
+ }
43
+ ],
44
+ "source": {
45
+ "files": [
46
+ "data/train-00000-of-00001.parquet"
47
+ ],
48
+ "repo_id": "cometadata/datacite-unique-affiliations",
49
+ "revision": "613a0122b134c3c4a6dbf3615411808d0b768f82",
50
+ "rows": 1680322
51
+ },
52
+ "split": {
53
+ "excluded_raw_affiliation_count": 136,
54
+ "name": "normalized",
55
+ "represented_raw_rows": 1680186,
56
+ "rows": 1521265,
57
+ "schema": {
58
+ "normalized_affiliation": "string",
59
+ "raw_affiliation_count": "uint64"
60
+ }
61
+ }
62
+ }