Instructions to use saltacc/anime-ai-detect with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use saltacc/anime-ai-detect with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="saltacc/anime-ai-detect") 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("saltacc/anime-ai-detect") model = AutoModelForImageClassification.from_pretrained("saltacc/anime-ai-detect", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,7 +8,7 @@ A BEiT classifier to see if anime art was made by an AI or a human.
|
|
| 8 |
### Disclaimer
|
| 9 |
Like most AI models, this classifier is not 100% accurate. Please do not take the results of this model as fact.
|
| 10 |
|
| 11 |
-
The best version had a 96% accuracy distinguishing aibooru and the images from the imageboard sites. However, the success you have with this model will vary based
|
| 12 |
|
| 13 |
Here are some biases I have noticed from my testing:
|
| 14 |
|
|
|
|
| 8 |
### Disclaimer
|
| 9 |
Like most AI models, this classifier is not 100% accurate. Please do not take the results of this model as fact.
|
| 10 |
|
| 11 |
+
The best version had a 96% accuracy distinguishing aibooru and the images from the imageboard sites. However, the success you have with this model will vary based on the images you are trying to classify.
|
| 12 |
|
| 13 |
Here are some biases I have noticed from my testing:
|
| 14 |
|