Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
csv
Languages:
English
Size:
10M - 100M
License:
v1 — 2026-08-14 — 36,165,993 records
Browse files- .gitattributes +1 -0
- README.md +149 -0
- data/classifications.csv +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
data/classifications.csv filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: ORKG Core Domain Classifier — Metadata
|
| 3 |
+
license: mit
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
task_categories:
|
| 7 |
+
- text-classification
|
| 8 |
+
size_categories:
|
| 9 |
+
- 10M<n<100M
|
| 10 |
+
tags:
|
| 11 |
+
- orkg
|
| 12 |
+
- core
|
| 13 |
+
- scholarly
|
| 14 |
+
- research-domains
|
| 15 |
+
dataset_info:
|
| 16 |
+
features:
|
| 17 |
+
- name: id
|
| 18 |
+
dtype: string
|
| 19 |
+
- name: predicted_domain
|
| 20 |
+
dtype: string
|
| 21 |
+
configs:
|
| 22 |
+
- config_name: default
|
| 23 |
+
data_files:
|
| 24 |
+
- split: train
|
| 25 |
+
path: data/classifications.csv
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
# ORKG Core Domain Classifier — Metadata
|
| 29 |
+
|
| 30 |
+
Update Date: 2026-08-14
|
| 31 |
+
|
| 32 |
+
Research-domain labels produced by the ORKG **Core Domain Classifier** for documents in the
|
| 33 |
+
[CORE](https://core.ac.uk/) corpus — one row per document.
|
| 34 |
+
|
| 35 |
+
The classifier that produces this file lives at [https://gitlab.com/TIBHannover/orkg/nlp/experiments/core-domain-classifier](https://gitlab.com/TIBHannover/orkg/nlp/experiments/core-domain-classifier).
|
| 36 |
+
This card and the CSV are written by `python -m app.publish_to_hf` in that repository, so
|
| 37 |
+
please do not edit them by hand.
|
| 38 |
+
|
| 39 |
+
## Usage
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
from datasets import load_dataset
|
| 43 |
+
|
| 44 |
+
dataset = load_dataset("MikeACedric/Domain_Classifier_Dataset", split="train")
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Schema
|
| 48 |
+
|
| 49 |
+
| Column | Description |
|
| 50 |
+
|--------|-------------|
|
| 51 |
+
| `id` | document id — a plain CORE id (`100000028`) or a prefixed one (`TIBKAT:1738662721`) |
|
| 52 |
+
| `predicted_domain` | research domain assigned by the classifier |
|
| 53 |
+
|
| 54 |
+
## 📊 Current Stats — `v1` (2026-08-14)
|
| 55 |
+
|
| 56 |
+
### Total Classified Records: 36,165,993
|
| 57 |
+
|
| 58 |
+
| Classification Label | Count | Percentage (%) |
|
| 59 |
+
|----------------------|-------|----------------|
|
| 60 |
+
| Arts and Humanities | 3,747,673 | 10.36% |
|
| 61 |
+
| Engineering | 1,350,298 | 3.73% |
|
| 62 |
+
| Life Sciences | 1,094,088 | 3.03% |
|
| 63 |
+
| Physical Sciences and Mathematics | 478,428 | 1.32% |
|
| 64 |
+
| Social and Behavioral Sciences | 8,558,981 | 23.67% |
|
| 65 |
+
| Aerospace Engineering | 285,799 | 0.79% |
|
| 66 |
+
| Biomedical Engineering and Bioengineering | 3,785,745 | 10.47% |
|
| 67 |
+
| Chemical Engineering | 449,235 | 1.24% |
|
| 68 |
+
| Civil and Environmental Engineering | 756,662 | 2.09% |
|
| 69 |
+
| Computer Engineering | 927,788 | 2.57% |
|
| 70 |
+
| Computational Engineering | 397,170 | 1.10% |
|
| 71 |
+
| Electrical Engineering and Information Technology | 787,669 | 2.18% |
|
| 72 |
+
| Electrical and Computer Engineering | 492,351 | 1.36% |
|
| 73 |
+
| Energy Process Engineering | 187,236 | 0.52% |
|
| 74 |
+
| Engineering Science and Materials | 686,304 | 1.90% |
|
| 75 |
+
| Materials Engineering | 119,792 | 0.33% |
|
| 76 |
+
| Materials Science and Engineering | 124,398 | 0.34% |
|
| 77 |
+
| Mechanical Engineering | 160,379 | 0.44% |
|
| 78 |
+
| Nanoscience and Nano Technology | 44,928 | 0.12% |
|
| 79 |
+
| Nuclear Engineering | 69,837 | 0.19% |
|
| 80 |
+
| Operations Research, Systems Engineering and Industrial Engineering | 478,981 | 1.32% |
|
| 81 |
+
| Production Technology | 33,845 | 0.09% |
|
| 82 |
+
| Plastics Engineering | 59,174 | 0.16% |
|
| 83 |
+
| American Studies | 196,444 | 0.54% |
|
| 84 |
+
| Classics | 81,754 | 0.23% |
|
| 85 |
+
| Educational Research | 436,443 | 1.21% |
|
| 86 |
+
| English Language and Literature | 64,280 | 0.18% |
|
| 87 |
+
| Religion | 155,769 | 0.43% |
|
| 88 |
+
| History | 754,428 | 2.09% |
|
| 89 |
+
| History of Art, Architecture and Archaelogy | 535,872 | 1.48% |
|
| 90 |
+
| Language, Societies and Cultures | 66,794 | 0.18% |
|
| 91 |
+
| Literary Studies | 205,343 | 0.57% |
|
| 92 |
+
| Musicology | 58,240 | 0.16% |
|
| 93 |
+
| Philosophy | 154,873 | 0.43% |
|
| 94 |
+
| Animal Sciences | 118,309 | 0.33% |
|
| 95 |
+
| Agriculture, Forestry and Veterinary Medicine | 551,161 | 1.52% |
|
| 96 |
+
| Biochemistry, Biophysics, and Structural Biology | 135,244 | 0.37% |
|
| 97 |
+
| Bioinformatics | 34,713 | 0.10% |
|
| 98 |
+
| Biotechnolgy | 47,664 | 0.13% |
|
| 99 |
+
| Public Health | 425,637 | 1.18% |
|
| 100 |
+
| Systems Biology | 35,571 | 0.10% |
|
| 101 |
+
| Physiology | 79,317 | 0.22% |
|
| 102 |
+
| Nutrition | 24,909 | 0.07% |
|
| 103 |
+
| Nursing Pharmacology, Toxicology and Environmental Health | 120,944 | 0.33% |
|
| 104 |
+
| Neuroscience and Neurobiology | 240,019 | 0.66% |
|
| 105 |
+
| Microbiology | 100,818 | 0.28% |
|
| 106 |
+
| Medicine | 611,792 | 1.69% |
|
| 107 |
+
| Immunology and Infectious diseases | 328,183 | 0.91% |
|
| 108 |
+
| Genetics and Genomics | 71,737 | 0.20% |
|
| 109 |
+
| Forestry and Forest Sciences | 116,406 | 0.32% |
|
| 110 |
+
| Entomology Food Science | 83,011 | 0.23% |
|
| 111 |
+
| Ecology and Evolutionary Biology | 214,486 | 0.59% |
|
| 112 |
+
| Cell and Developmental Biology | 35,923 | 0.10% |
|
| 113 |
+
| Water Research | 126,559 | 0.35% |
|
| 114 |
+
| Statistics and Probability | 49,888 | 0.14% |
|
| 115 |
+
| Polymer Research | 12,799 | 0.04% |
|
| 116 |
+
| Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics | 20,789 | 0.06% |
|
| 117 |
+
| Physics | 811,931 | 2.25% |
|
| 118 |
+
| Particles, Nuclei and Fields | 29,343 | 0.08% |
|
| 119 |
+
| Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas | 48,712 | 0.13% |
|
| 120 |
+
| Oceanography and Atmospheric Sciences and Meteorology | 231,389 | 0.64% |
|
| 121 |
+
| Mineralogy, Petrology and Geochemistry | 12,759 | 0.04% |
|
| 122 |
+
| Oceanography | 14,485 | 0.04% |
|
| 123 |
+
| Mathematics | 385,402 | 1.07% |
|
| 124 |
+
| Computer Sciences | 694,799 | 1.92% |
|
| 125 |
+
| Earth Sciences | 362,275 | 1.00% |
|
| 126 |
+
| Applied Mathematics | 19,946 | 0.06% |
|
| 127 |
+
| Chemistry | 92,369 | 0.26% |
|
| 128 |
+
| Chemical Solid State and Surface Research | 6,722 | 0.02% |
|
| 129 |
+
| Astrophysics and Astronomy | 194,406 | 0.54% |
|
| 130 |
+
| Urban Studies and Planning | 182,082 | 0.50% |
|
| 131 |
+
| Sociology | 6,903 | 0.02% |
|
| 132 |
+
| Social and Cultural Anthropology and Ethnology | 77,358 | 0.21% |
|
| 133 |
+
| Social Sciences | 351,725 | 0.97% |
|
| 134 |
+
| Political Science | 142,979 | 0.40% |
|
| 135 |
+
| Psychology | 82,157 | 0.23% |
|
| 136 |
+
| Public Affairs, Public Policy and Public Administration | 200,675 | 0.55% |
|
| 137 |
+
| Linguistics | 23,261 | 0.06% |
|
| 138 |
+
| Jurisprudence | 31,086 | 0.09% |
|
| 139 |
+
| Economics | 354,046 | 0.98% |
|
| 140 |
+
| Communication Sciences | 201,885 | 0.56% |
|
| 141 |
+
| Agricultural and Resource Economics | 26,270 | 0.07% |
|
| 142 |
+
| Comparative Literature | 106,734 | 0.30% |
|
| 143 |
+
| Language, Socieities and Cultures | 101,414 | 0.28% |
|
| 144 |
+
|
| 145 |
+
## 🕓 Revision History
|
| 146 |
+
|
| 147 |
+
| Version | Update Date | Records | Change |
|
| 148 |
+
|---------|-------------|---------|--------|
|
| 149 |
+
| `v1` | 2026-08-14 | 36,165,993 | first release |
|
data/classifications.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6adbf705def3b6189e352068603233f62e3c84e1d961a4f87588636dde949ed
|
| 3 |
+
size 1392310769
|