serbestonline commited on
Commit
1d2af3d
·
verified ·
1 Parent(s): 6d84984

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -26
README.md CHANGED
@@ -37,32 +37,7 @@ configs:
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
 
@@ -89,6 +64,30 @@ Faculdade de Medicina, Universidade de Sao Paulo, Sao Paulo, Brasil
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
  ```
 
37
 
38
  # OpenAlex Affiliation Dataset
39
 
40
+ This dataset provides raw and deduplicated academic affiliation strings from scholarly works published in December 2025. Affiliation strings are the raw, author-written institutional descriptions (e.g., "Department of Computer Science, MIT, Cambridge, MA, USA") that appear in academic papers — before any normalization or entity resolution.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  ## What are raw affiliation strings?
43
 
 
64
 
65
  Each chunk is deduplicated independently. `work_id` is the first work in which each string appeared within the chunk.
66
 
67
+ ## Quick start
68
+
69
+ ```python
70
+ from datasets import load_dataset
71
+
72
+ ds = load_dataset("LabID-base/OpenAlex-Afillation", "2025-12")
73
+ print(ds["train"][0])
74
+ # {"work_id": "https://openalex.org/W...", "raw_affiliation_string": "Department of..."}
75
+ ```
76
+
77
+ ## Dataset statistics
78
+
79
+ | Month | Collection date | Works | Total entries | Unique strings | Chunks |
80
+ |-------|----------------|-------|---------------|----------------|--------|
81
+ | 2025-12 | 2026-03-27 | 704,702 | 3,595,056 | **1,557,802** | 71 |
82
+
83
+ ## Schema
84
+
85
+ | Column | Type | Description |
86
+ |--------|------|-------------|
87
+ | `work_id` | string | OpenAlex work ID (e.g. `https://openalex.org/W2741809807`) |
88
+ | `raw_affiliation_string` | string | Raw affiliation text as written by the author |
89
+
90
+
91
  ## Directory structure
92
 
93
  ```