Add discoverability frontmatter to top-level model card
Browse files
README.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
|
|
@@ -15,6 +31,8 @@ A multi-label anime tagger trained from scratch on a \~5.9M image dataset that r
|
|
| 15 |
|
| 16 |
**V1** (the from-scratch 320×320 model) is shipping now. **V1.1** (a 448×448 fine-tune of V1) is **planned for release the week of 2026-05-15** and is expected to outperform V1 on this evaluation set; final numbers will be filled in once training and eval are complete. Pick the checkpoint whose native resolution matches the resolution you intend to feed it (see *Variants* below).
|
| 17 |
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
## Variants — which checkpoint should I use?
|
|
@@ -30,6 +48,12 @@ Two practical notes:
|
|
| 30 |
- **V1 is not deprecated by V1.1.** They are siblings with different operating points, not generations of the same model.
|
| 31 |
- **Until V1.1 ships, V1 is the only released checkpoint.** Numbers and recommendations in this card refer to V1 unless explicitly labeled V1.1.
|
| 32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
---
|
| 34 |
|
| 35 |
## How this model came to be
|
|
@@ -212,4 +236,8 @@ V1 ships with the noise it ships with. V2 is where I plan to do something about
|
|
| 212 |
|
| 213 |
## License / usage
|
| 214 |
|
| 215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-classification
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- anime
|
| 8 |
+
- anime-tagger
|
| 9 |
+
- tagger
|
| 10 |
+
- image-tagging
|
| 11 |
+
- multi-label
|
| 12 |
+
- multi-label-classification
|
| 13 |
+
- vision-transformer
|
| 14 |
+
- vit
|
| 15 |
+
- illustration
|
| 16 |
+
- danbooru
|
| 17 |
+
- safetensors
|
| 18 |
+
- onnx
|
| 19 |
---
|
| 20 |
|
| 21 |
|
|
|
|
| 31 |
|
| 32 |
**V1** (the from-scratch 320×320 model) is shipping now. **V1.1** (a 448×448 fine-tune of V1) is **planned for release the week of 2026-05-15** and is expected to outperform V1 on this evaluation set; final numbers will be filled in once training and eval are complete. Pick the checkpoint whose native resolution matches the resolution you intend to feed it (see *Variants* below).
|
| 33 |
|
| 34 |
+
A live demo is available on the companion Space: [Grio43/OppaiOracle](https://huggingface.co/spaces/Grio43/OppaiOracle).
|
| 35 |
+
|
| 36 |
---
|
| 37 |
|
| 38 |
## Variants — which checkpoint should I use?
|
|
|
|
| 48 |
- **V1 is not deprecated by V1.1.** They are siblings with different operating points, not generations of the same model.
|
| 49 |
- **Until V1.1 ships, V1 is the only released checkpoint.** Numbers and recommendations in this card refer to V1 unless explicitly labeled V1.1.
|
| 50 |
|
| 51 |
+
### Files in this repo
|
| 52 |
+
|
| 53 |
+
- `V1_safetensors/` — V1 in `safetensors` format with `config.json` and `preprocessing.json`. Use this for PyTorch / custom inference.
|
| 54 |
+
- `V1_onnx/` — V1 exported to ONNX. Use this for ONNX Runtime inference (CPU, DirectML, CUDA EP).
|
| 55 |
+
- Each variant directory ships `vocabulary.json`, `selected_tags.csv`, `pr_thresholds.json`, and a copy of this README.
|
| 56 |
+
|
| 57 |
---
|
| 58 |
|
| 59 |
## How this model came to be
|
|
|
|
| 236 |
|
| 237 |
## License / usage
|
| 238 |
|
| 239 |
+
Released under the **Apache License 2.0**. You may use, modify, and redistribute the model and accompanying files for personal, research, or commercial purposes, provided you retain the license notice and attribution.
|
| 240 |
+
|
| 241 |
+
**Intended use.** Research and downstream tooling for multi-label tagging of anime / illustration imagery.
|
| 242 |
+
|
| 243 |
+
**Out-of-scope use.** Decisions about real people; safety-critical pipelines that depend on label correctness without human review; training a downstream model on raw outputs without manual review (the missing-tag bias described above will propagate).
|