CoolFace
Datasetpublic

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.

sourceHugging Facecc0-1.0updated 3y agoView on Hugging Face
6likes219downloads
Dataset Card

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 Endpointhttps://danbooru.donmai.ushttps://safebooru.donmai.us
Date2005-01-01..2023-12-312005-01-01..2023-12-31
Score>0>0
Ratingg,s,q,eg
Filetypepng,jpg,webppng,jpg,webp
Size (number of rows)6,574,1491,387,371

Usage

pip install datasets
py
from 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'}