serbestonline commited on
Commit
055d3d2
·
verified ·
1 Parent(s): d1c39c5

Add dataset card with metadata, schema, and usage docs

Browse files
Files changed (1) hide show
  1. README.md +121 -3
README.md CHANGED
@@ -1,3 +1,121 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ - zh
6
+ - de
7
+ - fr
8
+ - es
9
+ - it
10
+ - pt
11
+ - ja
12
+ - ko
13
+ - ar
14
+ - ru
15
+ - nl
16
+ - pl
17
+ - tr
18
+ tags:
19
+ - affiliations
20
+ - nlp
21
+ - bibliometrics
22
+ - openalex
23
+ - ner
24
+ - institution-disambiguation
25
+ - academic
26
+ - text
27
+ pretty_name: OpenAlex Affiliation Dataset
28
+ size_categories:
29
+ - 1M<n<10M
30
+ task_categories:
31
+ - token-classification
32
+ - text-classification
33
+ configs:
34
+ - config_name: "2025-12"
35
+ data_files: "data/2025-12/*.csv"
36
+ ---
37
+
38
+ # OpenAlex Affiliation Dataset
39
+
40
+ > **1,557,802 unique raw affiliation strings** from 704,702 academic works published in December 2025, extracted via the [OpenAlex API](https://openalex.org).
41
+
42
+ Part of the **[LabID](https://github.com/labid-base/openalex-pipeline)** project — an open pipeline for building a knowledge graph of research laboratories.
43
+
44
+ ## Quick start
45
+
46
+ ```python
47
+ from datasets import load_dataset
48
+
49
+ ds = load_dataset("LabID-base/OpenAlex-Afillation", "2025-12")
50
+ print(ds["train"][0])
51
+ # {"work_id": "https://openalex.org/W...", "raw_affiliation_string": "Department of..."}
52
+ ```
53
+
54
+ ## Dataset statistics
55
+
56
+ | Month | Collection date | Works | Total entries | Unique strings | Chunks |
57
+ |-------|----------------|-------|---------------|----------------|--------|
58
+ | 2025-12 | 2026-03-27 | 704,702 | 3,595,056 | **1,557,802** | 71 |
59
+
60
+ ## Schema
61
+
62
+ | Column | Type | Description |
63
+ |--------|------|-------------|
64
+ | `work_id` | string | OpenAlex work ID (e.g. `https://openalex.org/W2741809807`) |
65
+ | `raw_affiliation_string` | string | Raw affiliation text as written by the author |
66
+
67
+ ## What are raw affiliation strings?
68
+
69
+ Affiliation strings are the institutional descriptions authors include in their papers, before any normalization or entity resolution:
70
+
71
+ ```
72
+ Department of Computer Science, Stanford University, Stanford, CA 94305, USA
73
+ Institut fur Physik, Humboldt-Universitat zu Berlin, 12489 Berlin, Germany
74
+ Faculdade de Medicina, Universidade de Sao Paulo, Sao Paulo, Brasil
75
+ ```
76
+
77
+ ## Use cases
78
+
79
+ - **Institution disambiguation / NER** — parse and normalize to known entities (ROR, GRID, Wikidata)
80
+ - **NLP training data** — multilingual academic text for span detection, entity linking
81
+ - **Bibliometrics** — institutional analytics, collaboration networks
82
+ - **Affiliation normalization** — training data for models like AffilGood, S2AFF
83
+
84
+ ## Data source & provenance
85
+
86
+ **Source:** [OpenAlex](https://openalex.org) — fully open index of scholarly works by OurResearch. CC BY 4.0.
87
+
88
+ **Pipeline:** [labid-base/openalex-pipeline](https://github.com/labid-base/openalex-pipeline)
89
+
90
+ Each chunk is deduplicated independently. `work_id` is the first work in which each string appeared within the chunk.
91
+
92
+ ## Directory structure
93
+
94
+ ```
95
+ data/
96
+ 2025-12/
97
+ works_2025_12_chunk_0001.csv
98
+ ...
99
+ works_2025_12_chunk_0071.csv (71 chunks, ~22K strings each)
100
+ ```
101
+
102
+ ## Update schedule
103
+
104
+ Updated **monthly**. Each update adds a new `data/{YYYY}-{MM}/` folder.
105
+
106
+ | Release | Period | Status |
107
+ |---------|--------|--------|
108
+ | v1 | 2025-12 | Available |
109
+ | v2 | 2026-01 | Planned |
110
+
111
+ ## Citation
112
+
113
+ ```bibtex
114
+ @misc{priem2022openalex,
115
+ title={OpenAlex: A fully-open index of the world's research works},
116
+ author={Priem, Jason and Piwowar, Heather and Orr, Richard},
117
+ year={2022},
118
+ eprint={2205.01833},
119
+ archivePrefix={arXiv}
120
+ }
121
+ ```