Federated academic search stack
Collection
Federated retrieval across arXiv, PubMed, Semantic Scholar, and OpenAlex - live Space plus the datasets used for tagging and benchmarking. • 3 items • Updated
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
A snapshot of OpenAlex's Level 1 (broad fields) and Level 2 (subfields) concepts: 21,739 records across 284 broad fields and 21,455 subfields.
| Level | Count | Examples |
|---|---|---|
| 1 | 284 | Computer science, Physics, Biology, Sociology |
| 2 | 21,455 | Machine learning, Quantum mechanics, Convolutional neural network |
Each record:
| Column | Type | Description |
|---|---|---|
id |
string | OpenAlex concept ID (e.g., C121955636) |
name |
string | Concept display name |
level |
int | 1 (broad field) or 2 (subfield) |
Derived from OpenAlex, filtered to level:1|2. OpenAlex publishes its data under CC0 1.0, so this derivative is also CC0.
from datasets import load_dataset
ds = load_dataset("barissozudogru/openalex-concepts")
print(ds["train"][0])
# {'id': 'C121955636', 'name': 'Accounting', 'level': 1}
Or directly with pandas:
import pandas as pd
df = pd.read_csv("hf://datasets/barissozudogru/openalex-concepts/concepts.csv")
print(df[df["level"] == 1].head())
research-papers-mcp — federated academic search MCP server that uses this vocabulary