The Dataset Viewer is not available on this dataset.
Danbooru Tag Metadata Snapshot
Public snapshot of Danbooru tag metadata for canonicalization, alias resolution, implication expansion, and analytics. It is available in both SQLite and Parquet for local indexed lookups, browser-based inspection, and general data tooling.
This dataset contains explicit Danbooru tag vocabulary, including sexual-content terminology, but does not include images or other media.
What Is Included
- canonical tags
- tag aliases
- tag implications
- snapshot metadata
- Parquet exports for viewer-friendly access
Files
booru_snapshot.sqlite: ready-to-use SQLite snapshottags.parquet: canonical tags tabletag_aliases.parquet: alias mapping tabletag_implications.parquet: implication mapping tablemetadata.json: human-readable metadata and row counts
Snapshot Metadata
snapshot_built_at:2026-04-08T09:15:30Zsnapshot_builder_version:0.4public_preparer_version:0.5row_count_tags:1711015row_count_tag_aliases:59259row_count_tag_implications:49334snapshot_profile:public_core
Sources
- live Danbooru tags API
- live Danbooru tag aliases API
- live Danbooru tag implications API
Schema
tags
id: Danbooru tag idname: canonical tag namecategory: Danbooru numeric tag categorypost_count: current post count from the API snapshotis_deprecated:1if the canonical tag is deprecated, else0words: serialized tokenized words array from the Danbooru APIsource: source label for this row in the snapshot build
Category values follow Danbooru's API:
0: general1: artist3: copyright4: character5: meta
tag_aliases
id: Danbooru tag alias idantecedent_name: alias or redirected source tagconsequent_name: canonical destination tagstatus: lifecycle state of the relationreason: optional human-entered explanation from Danboorusource: source label for this row in the snapshot build
tag_implications
id: Danbooru tag implication idantecedent_name: source tagconsequent_name: implied tagstatus: lifecycle state of the relationreason: optional human-entered explanation from Danboorusource: source label for this row in the snapshot build
Relation status values:
active: current relationretired: historical relation retained for compatibilitydeleted: removed relation that should usually be ignored operationally
Practical Use
Use booru_snapshot.sqlite for local lookup-heavy applications, or use the Parquet tables directly in the Hugging Face viewer, DuckDB, Polars, Pandas, Spark, or other tabular tooling.
Example DuckDB query:
SELECT name, post_count
FROM read_parquet('tags.parquet')
WHERE category = 4
ORDER BY post_count DESC
LIMIT 20;
Example Python / Pandas:
import pandas as pd
tags = pd.read_parquet("tags.parquet")
aliases = pd.read_parquet("tag_aliases.parquet")
- Downloads last month
- 83