Views
No views yet
.pth → .safetensors and bundled with tags_v0.9_13k.json for convenience.TL;DR
- ~13.5k Danbooru-style tags (general, character, copyright)
- Headline: strong character performance; recall-leaning defaults
- Built for search, dataset curation, caption assistance, and text-to-image conditioning
pixai-tagger-v0.9 is a multi-label image classifier for anime images. It predicts Danbooru-style tags and aims to find more of the right stuff (recall) so you can filter later. We continued training the classification head of EVA02 (from WD v3) on a newer dataset, and used embedding-space MixUp to help calibration.SmilingWolf/wd-eva02-large-tagger-v3 (encoder frozen)top_k = 128threshold_general = 0.30threshold_character = 0.75threshold_general = 0.10 (expect more false positives)1# Replace with your own endpoint URL
2curl "https://YOUR_ENDPOINT_URL.huggingface.cloud" \
3 -X POST \
4 -H "Accept: application/json" \
5 -H "Content-Type: application/json" \
6 -d '{
7 "inputs": {"url": "https://your.cdn/image.jpg"},
8 "parameters": {
9 "top_k": 128,
10 "threshold_general": 0.10,
11 "threshold_character": 0.75
12 }
13 }'