subcategory stringlengths 6 67 | category stringclasses 100
values |
|---|---|
Concept explanations in physics | Physics |
Step-by-step problem solving in physics | Physics |
Homework assistance in physics | Physics |
Lab experiment design in physics | Physics |
Historical physicist profiles | Physics |
Formula derivation in physics | Physics |
Unit conversion help in physics | Physics |
Everyday physics phenomena | Physics |
Interactive physics simulation guidance | Physics |
Common misconception clarification in physics | Physics |
Physics lab report analysis | Physics |
Physics science fair project ideas | Physics |
Physics career pathway questions | Physics |
Free-body diagrams and vector problems | Physics |
Thought experiments (e.g., Einstein’s train) | Physics |
Current physics news explained | Physics |
Textbook chapter summaries in physics | Physics |
Flashcard generation in physics | Physics |
Exam practice questions in physics | Physics |
Physics of sports and games | Physics |
Molecule naming and structure | Chemistry |
Balancing chemical equations | Chemistry |
Periodic table trends | Chemistry |
Chemistry lab safety protocols | Chemistry |
Organic reaction mechanisms | Chemistry |
Acid-base chemistry | Chemistry |
Stoichiometry calculations | Chemistry |
Chemical bonding concepts | Chemistry |
Thermodynamics and kinetics | Chemistry |
Electrochemistry basics | Chemistry |
Nuclear chemistry introduction | Chemistry |
Analytical techniques (e.g., titration) | Chemistry |
Household chemistry explanations | Chemistry |
Green chemistry principles | Chemistry |
Famous chemist biographies | Chemistry |
Polymer science basics | Chemistry |
Connections between chemistry and biochemistry | Chemistry |
Chemistry career paths | Chemistry |
Chemistry lab report help | Chemistry |
Chemistry exam review material | Chemistry |
Cell structure and function | Biology |
Genetics and inheritance | Biology |
DNA replication and transcription | Biology |
Photosynthesis and respiration | Biology |
Human anatomy overview | Biology |
Organ systems in biology | Biology |
Evolution and natural selection | Biology |
Ecology and ecosystems | Biology |
Classification and taxonomy | Biology |
Microbiology basics | Biology |
Plant biology | Biology |
Animal behavior | Biology |
Biotechnology applications | Biology |
Health and disease basics | Biology |
Homeostasis | Biology |
Scientific method in biology | Biology |
Biology field study and data collection | Biology |
Biology lab techniques | Biology |
Environmental conservation | Biology |
Biology study guide generation | Biology |
Arithmetic and mental math | Mathematics |
Algebra basics | Mathematics |
Geometry proofs | Mathematics |
Trigonometry identities | Mathematics |
Precalculus functions | Mathematics |
Calculus derivatives | Mathematics |
Integral calculus | Mathematics |
Linear algebra | Mathematics |
Discrete math | Mathematics |
Number theory | Mathematics |
Probability puzzles | Mathematics |
Logic and proofs | Mathematics |
Math word problems | Mathematics |
Graphing and functions | Mathematics |
Applied math problems | Mathematics |
Math history | Mathematics |
Mathematics exam prep | Mathematics |
Mathematics flashcard creation | Mathematics |
Visual math explanations | Mathematics |
Real-world math projects | Mathematics |
Programming basics | Computer Science |
Data structures | Computer Science |
Algorithms | Computer Science |
Object-oriented design | Computer Science |
Web development | Computer Science |
Database design | Computer Science |
Operating systems concepts | Computer Science |
Networking fundamentals | Computer Science |
Software testing | Computer Science |
Debugging practice | Computer Science |
Version control | Computer Science |
Security principles | Computer Science |
Human-computer interaction | Computer Science |
Computer architecture | Computer Science |
Compiler basics | Computer Science |
Mobile app concepts | Computer Science |
Cloud computing | Computer Science |
Open-source contribution | Computer Science |
Coding interview practice | Computer Science |
Tech career guidance | Computer Science |
End of preview. Expand in Data Studio
Subcategories-2000-en
A hierarchical label set of 2,000 English subcategories organized under the 100 top-level categories from categories-100-en, with exactly 20 subcategories per parent category.
Structure
Each of the 100 parent categories has exactly 20 subcategories:
| category | count |
|---|---|
| Physics | 20 |
| Chemistry | 20 |
| ... | ... |
| Sustainable Living | 20 |
| Total | 2,000 |
Use cases
- Hierarchical / coarse-to-fine text classification
- Testing long-list label selection (2,000-class label space) in LLMs
- Prompt or intent template generation for educational chatbots
- Taxonomy quality checks and label-expansion experiments
Limitations
- Generated by an LLM and not curated by human subject-matter experts; expect some overlap between neighboring categories (e.g., "Marine Biology" vs. "Oceanography").
- The parent
categoryfield matchescategories-100-en, but subcategory phrasing can be inconsistent in granularity ("Saving strategies" vs. "Mutual funds and ETFs"). - Educational/descriptive labels only — not verified facts or medical advice.
Quickstart
from datasets import load_dataset
ds = load_dataset("RowRed/subcategories-2000-en", split="train")
print(ds.num_rows) # 2000
print(ds.features) # {'subcategory': Value('string'), 'category': Value('string')}
# Group by parent category
from collections import Counter
counts = Counter(row["category"] for row in ds)
print(len(counts)) # 100 (unique parents)
print(all(v == 20 for v in counts.values())) # True
License
This dataset is released under the Apache License 2.0.
Attribution:
Generated via self-instruct prompting using DeepSeek V4 Flash 0731 (MIT-licensed). Not affiliated with DeepSeek.
Citation
@misc{subcategories2000en,
author = {RowRed},
title = {Subcategories-2000-en},
year = {2026},
url = {https://huggingface.co/datasets/RowRed/subcategories-2000-en}
}
- Downloads last month
- 7