isek-ai/danbooru-tags-2023
danbooru-tags-2023 A dataset of danbooru tags. Dataset information Generated using danbooru and safebooru API. The dataset was created with the following conditions: Subset name all safe API Endpoint https://danbooru.donmai.us https://safebooru.donmai.us Date 2005-01-01..2023-12-31 2005-01-01..2023-12-31 Score >0 >0 Rating g,s,q,e g Filetype png,jpg,webp png,jpg,webp Size (number of rows) 6,574,149 1,387,371 Usage pip… See the full description on the dataset page: https://huggingface.co/datasets/isek-ai/danbooru-tags-2023.
6219
danbooru-tags-2023
A dataset of danbooru tags.
Dataset information
Generated using danbooru and safebooru API.
The dataset was created with the following conditions:
Usage
pip install datasetsfrom datasets import load_dataset
dataset = load_dataset(
"isek-ai/danbooru-tags-2023",
"safe", # or "all"
split="train",
)
print(dataset)
print(dataset[0])
# Dataset({
# features: ['id', 'copyright', 'character', 'artist', 'general', 'meta', 'rating', 'score', 'created_at'],
# num_rows: 1387371
# })
# {'id': 12219,
# 'copyright': 'fate/stay night, fate/unlimited blade works, fate (series)',
# 'character': 'emiya shirou, gilgamesh (fate), gilgamesh (immoral biker jacket) (fate)',
# 'artist': 'takeuchi takashi',
# 'general': '2boys, alternate costume, alternate hairstyle, battle, blonde hair, brown hair, clenched teeth, duel, dutch angle, field of blades, jacket, long sleeves, male focus, multiple boys, official alternate costume, open clothes, open jacket, open mouth, orange hair, pants, planted, planted sword, raglan sleeves, red eyes, sky, slashing, sword, teeth, unlimited blade works (fate), wasteland, weapon',
# 'meta': 'game cg',
# 'rating': 'g',
# 'score': 33,
# 'created_at': '2005-10-15T08:50:32.000+09:00'}