Image Classification
Transformers
Safetensors
vit
image-detection
ai-image-generation
anime
ai-anime
human-detection
art
Instructions to use legekka/AI-Anime-Image-Detector-ViT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use legekka/AI-Anime-Image-Detector-ViT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="legekka/AI-Anime-Image-Detector-ViT") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("legekka/AI-Anime-Image-Detector-ViT") model = AutoModelForImageClassification.from_pretrained("legekka/AI-Anime-Image-Detector-ViT") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -29,16 +29,17 @@ It seems like using random crops helped the model to generalize better, however,
|
|
| 29 |
|
| 30 |
## Performance comparison
|
| 31 |
|
| 32 |
-
We did a small eval test with ~5000 images on the current available AI image detectors. Note that these models were not specificly trained on anime images.
|
| 33 |
-
|
| 34 |
-
| Model
|
| 35 |
-
|------------------------------------------|----------|
|
| 36 |
-
|
|
| 37 |
-
|
|
| 38 |
-
|
|
| 39 |
-
|
|
| 40 |
-
|
|
| 41 |
-
|
|
|
|
|
| 42 |
| **legekka/AI-Anime-Image-Detector-ViT** | **94,68%** |
|
| 43 |
|
| 44 |
## Usage
|
|
|
|
| 29 |
|
| 30 |
## Performance comparison
|
| 31 |
|
| 32 |
+
We did a small eval test with ~5000 images on the current available AI image detectors. **Note that these models were not specificly trained on anime images.**
|
| 33 |
+
|
| 34 |
+
| Model | Accuracy |
|
| 35 |
+
|----------------------------------------------|--------------|
|
| 36 |
+
| dima806/ai_vs_real_image_detection | 35,97% |
|
| 37 |
+
| Organika/sdxl-detector | 43,29% |
|
| 38 |
+
| Nahrawy/AIorNot | 64,74% |
|
| 39 |
+
| jacoballessio/ai-image-detect-distilled | 68,94% |
|
| 40 |
+
| umm-maybe/AI-image-detector | 75,45% |
|
| 41 |
+
| mmanikanta/VIT_AI_image_detector | 79,65% |
|
| 42 |
+
| *legekka/AI-Anime-Image-Detector-HD-ViT WIP* | *94,26%* |
|
| 43 |
| **legekka/AI-Anime-Image-Detector-ViT** | **94,68%** |
|
| 44 |
|
| 45 |
## Usage
|