File size: 5,717 Bytes
a4a9fb0 20f75a0 a4a9fb0 1b14670 a4a9fb0 20f75a0 b408e4b 20f75a0 1b14670 20f75a0 d2f8da2 20f75a0 d2f8da2 20f75a0 b408e4b 20f75a0 bca8df2 20f75a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | ---
language: en
library_name: onnx
tags:
- image-classification
- multi-label-classification
- danbooru
- anime
- onnx
pipeline_tag: image-classification
license: other
license_name: dinov3-license
license_link: https://ai.meta.com/resources/models-and-libraries/dinov3-license/
datasets:
- trojblue/danbooru2025-metadata
base_model:
- facebook/dinov3-vitb16-pretrain-lvd1689m
- facebook/dinov3-vitl16-pretrain-lvd1689m
---
# DanbooruTagQuery
Lightweight multi-label anime image tagger using **DINOv3 ViT backbone** and a **cross-attention tag query head**, trained on Danbooru images.
- 11,424 tags (general + character + copyright)
- 448Γ448 input, ONNX-exported
[GitHub repo](https://github.com/realphongha/DanbooruTagQuery)
You can try our models here:
[realphongha/DanbooruTagQuery](https://huggingface.co/spaces/realphongha/DanbooruTagQuery)
## Model description
Image β ViT backbone (DINOv3) β patch tokens β cross-attention β per-tag logits.
Each tag is a **single learnable embedding vector** (a "query"). An `nn.MultiheadAttention` layer computes attention between all tag queries and all ViT patch tokens; each query's attended feature is projected through a scalar linear classifier. No MLP, no positional encoding β the query itself encodes "what to look for". This design is modular: the head can be swapped without touching the dataset, training loop, or metrics.
```text
Input image (448Γ448)
β
βΌ
βββββββββββββββββββββββ
β DINOv3 β pretrained ViT backbone
βββββββββββ¬ββββββββββββ
β tokens: (B, N_patches+5, D)
βΌ
βββββββββββββββββββββββ
β Tag Query Head β
β β
β tag_queries: β learned (num_tags, D)
β (num_tags, D) ββββββΌββ cross-attention βββ tag features (B, num_tags, D)
β β queries attend to ViT patch tokens
β classifier: β
β Linear(Dβ1) ββββββββ β logits (B, num_tags)
βββββββββββββββββββββββ
β
βΌ
sigmoid(logits) β per-tag probabilities
```
## Evaluation
Evaluated against popular community taggers on the **intersection evaluation subset** (3,383 tags present in every model's vocabulary), drawn from a held-out danbooru2025 test set of images with post ID > 7220105 (avoids contamination with WD-SwinV2 training data). Each model ran at its native resolution; thresholds searched over `[0.10, 0.15, β¦, 0.95]`.
| Model | Params | Input | Latency | mAP | Macro F1 | Micro F1 | Best threshold |
|---|---|---|---|---|---|---|---|
| **Ours (L/16) - trained from scratch** | 319.0M | 448Γ448 | 36.6ms | **0.5352** | **0.4775** | **0.6884** | 0.20 |
| WD-eva02-large-tagger-v3 | 315.2M | 448Γ448 | 50.3ms | 0.4822 | 0.4344 | 0.6684 | 0.30 |
| **Ours (B/16) - trained from scratch** | 96.8M | 448Γ448 | 24.9ms | 0.4693 | 0.4195 | 0.6684 | 0.20 |
| WD-SwinV2-tagger-v3 | 98.0M | 448Γ448 | 35.8ms | 0.4603 | 0.4140 | 0.6474 | 0.15 |
| ML-Danbooru | 68.9M | 448Γ448 | 34.0ms | 0.4023 | 0.3490 | 0.5952 | 0.60 |
| JoyTag | 91.5M | 448Γ448 | 20.2ms | 0.3783 | 0.3429 | 0.6179 | 0.35 |
| DeepDanbooru (CNN) | 161.0M | 512Γ512 | 33.6ms | 0.2100 | 0.1920 | 0.4692 | 0.15 |
Key results:
- **Ours (L/16)** leads all baselines by **+0.053 mAP** over WD-eva02 (the strongest comparable model) with 33% faster inference (36.6ms vs 50.3ms).
- **Ours (B/16)** outperforms all models in the <100M class (WD-SwinV2 +0.009 mAP, JoyTag +0.091 mAP) at 24.9ms latency.
*Latency measured on a single NVIDIA RTX 5090 (PyTorch eager for local runs; ONNX Runtime for ONNX-exported models).*
## Intended uses
- Tagging anime / illustration images (general, character, and copyright tags)
- Generating caption / metadata text for image collections
- Danbooru-style workflows, e.g. injecting a tag preset into image-generation UIs
- Batch CLI tagging of local image folders
**Note: this model tags adult (NSFW) content.** Danbooru contains explicit imagery and its tag vocabulary reflects that. Do not use in contexts where such content is unacceptable.
## Training data
- Metadata source for Danbooru posts/images: [`trojblue/danbooru2025-metadata`](https://huggingface.co/datasets/trojblue/danbooru2025-metadata)
- Filters: deleted/banned/flagged/pending images removed, score > 10, file size 50 KBβ20 MB, dimensions β₯ 224Γ224
- Tags: `tag_string_general` + `tag_string_character` + `tag_string_copyright` unified; tags with frequency β₯ 100; images with β₯ 2 tags
- Vocabulary: **11,424 tags**; ~1M training images; last 100K images held out as validation
- Noise tags removed via `data/ignored_tags.txt`
## Future plan
- [ ] Care more about the data (de-duplication, remove noise, etc.). Current data cleaning pipeline is too basic?
- [ ] Try KD + Transfer Learning from L16 => B16/S16 models.
- [ ] Another self-attention block for the head => more semantic for the tags.
## Acknowledgements
- [DINOv3](https://github.com/facebookresearch/dinov3) (Meta AI) β pretrained ViT backbones (licensed under the DINOv3 License)
- [`trojblue/danbooru2025-metadata`](https://huggingface.co/datasets/trojblue/danbooru2025-metadata) β training data
- Baseline reimplementations live in [`src/compared_models/`](https://github.com/realphongha/DanbooruTagQuery/tree/master/src/compared_models): DeepDanbooru, WD-tagger, ML-Danbooru, JoyTag
- [timm](https://github.com/huggingface/pytorch-image-models) for backbone loading and [ONNX Runtime](https://onnxruntime.ai/) for deployment |