Image Classification
Transformers
Safetensors
clip
ai-detection
deepfake-detection
vision
synthetic-image-detection
Eval Results (legacy)
Instructions to use Atugil-Intelligence/Synas-Detect-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Atugil-Intelligence/Synas-Detect-1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="Atugil-Intelligence/Synas-Detect-1") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoProcessor, AutoModelForImageClassification processor = AutoProcessor.from_pretrained("Atugil-Intelligence/Synas-Detect-1") model = AutoModelForImageClassification.from_pretrained("Atugil-Intelligence/Synas-Detect-1", device_map="auto") - Notebooks
- Google Colab
- Kaggle