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
File size: 5,169 Bytes
e802ac8 a28e955 9681725 a28e955 e802ac8 a28e955 9681725 a28e955 9681725 e802ac8 a28e955 e802ac8 9681725 e802ac8 a28e955 e802ac8 9681725 e802ac8 a28e955 9681725 a28e955 e802ac8 a28e955 e802ac8 9681725 e802ac8 9681725 e802ac8 9681725 e802ac8 9681725 e802ac8 9681725 e802ac8 9681725 e802ac8 a28e955 e802ac8 9681725 e802ac8 9681725 e802ac8 9681725 a28e955 9681725 e802ac8 a28e955 e802ac8 9681725 e802ac8 9681725 e802ac8 a28e955 e802ac8 9681725 e802ac8 9681725 e802ac8 9681725 e802ac8 9681725 | 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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | ---
license: mit
base_model: openai/clip-vit-large-patch14
tags:
- ai-detection
- deepfake-detection
- vision
- image-classification
- clip
- synthetic-image-detection
pipeline_tag: image-classification
library_name: transformers
metrics:
- accuracy
model-index:
- name: Synas Detect 1
results:
- task:
type: image-classification
name: Synthetic vs Real Image Classification
dataset:
type: ComplexDataLab/OpenFake
name: OpenFake Core Dataset
metrics:
- type: accuracy
value: 95.0
---
# Synas Detect 1
**Synas Detect 1** is a high-accuracy vision classifier (~304 million parameters) developed by **Atugil Intelligence**. Fine-tuned on modern synthetic media, it specializes in determining whether an image is an authentic photograph or AI-generated by models such as **Midjourney**, **Stable Diffusion**, **DALL·E**, **Imagen**, and similar generative systems.
---
# Model Overview
| Attribute | Detail |
| :--- | :--- |
| **Developed by** | Atugil Intelligence |
| **Model Name** | Synas Detect 1 |
| **Model Type** | Vision Transformer / Image Classifier |
| **Base Architecture** | `openai/clip-vit-large-patch14` |
| **Parameter Count** | ~304 Million |
| **License** | MIT |
| **Primary Task** | Binary Image Classification (`0`: AI Generated / Fake, `1`: Real Photograph) |
---
# Intended Use
## Primary Use Cases
- **Media Authenticity Verification** – Detect synthetic imagery for journalism, publishing, and digital archives.
- **Content Moderation** – Flag AI-generated uploads within trust and safety pipelines.
- **Forensic Visual Analysis** – Assist researchers and investigators by identifying subtle generation artefacts.
## Limitations
While Synas Detect 1 performs strongly across a wide variety of datasets, it has several limitations:
- Extremely compressed JPEG images or aggressive social media recompression may reduce confidence.
- Heavy cropping, resizing, or post-processing can remove useful forensic signals.
- The model is not explicitly trained against adversarial perturbations or deliberate evasion attacks.
- Classification confidence should not be treated as absolute proof of authenticity.
---
# Training Setup
| Setting | Value |
| :--- | :--- |
| **Dataset** | `ComplexDataLab/OpenFake` (Core Partition) |
| **Hardware** | 2× NVIDIA T4 GPUs |
| **Precision** | Mixed Precision (FP16) |
| **Framework** | PyTorch + Transformers |
| **Parallelism** | DataParallel |
| **Effective Batch Size** | 64 |
| **Learning Rate** | 2e-5 |
| **Optimizer** | AdamW + Linear Learning Rate Decay |
The model was fine-tuned on high-quality synthetic and real image pairs while preserving the strong visual representations learned by CLIP.
---
# Performance
| Metric | Score |
| :--- | :--- |
| **In-Distribution Accuracy** | ~96% |
| **Out-of-Sample Accuracy** | ~92–95% |
Performance varies depending on image quality, compression level, and the generation model used.
---
# Usage
## Transformers Pipeline
```python
from transformers import pipeline
from PIL import Image
classifier = pipeline(
"image-classification",
model="Atugil-Intelligence/synas-detect-1"
)
image = Image.open("path_to_image.jpg").convert("RGB")
predictions = classifier(image)
print("Synas Detect 1 Predictions")
print("-" * 40)
for prediction in predictions:
print(
f"{prediction['label']} "
f"({prediction['score'] * 100:.2f}%)"
)
```
---
## Native PyTorch Implementation
```python
import torch
from PIL import Image
from transformers import (
AutoImageProcessor,
AutoModelForImageClassification,
)
MODEL_ID = "Atugil-Intelligence/synas-detect-1"
device = torch.device(
"cuda" if torch.cuda.is_available() else "cpu"
)
processor = AutoImageProcessor.from_pretrained(MODEL_ID)
model = AutoModelForImageClassification.from_pretrained(
MODEL_ID
).to(device)
model.eval()
image = Image.open("path_to_image.jpg").convert("RGB")
inputs = processor(
image,
return_tensors="pt"
).to(device)
with torch.no_grad():
outputs = model(**inputs)
probabilities = torch.softmax(outputs.logits, dim=-1)
prediction = probabilities.argmax(dim=-1).item()
confidence = probabilities[0][prediction].item()
labels = {
0: "AI Generated (Fake)",
1: "Real Photograph",
}
print(f"Prediction : {labels[prediction]}")
print(f"Confidence : {confidence * 100:.2f}%")
```
---
# License
Synas Detect 1 is released under the **MIT License**.
## Attribution
This model is fine-tuned from OpenAI's **CLIP ViT-Large Patch-14** vision backbone.
**Copyright**
- Copyright © 2021 OpenAI (Base Model)
- Copyright © 2026 Atugil Intelligence (Fine-Tuned Weights)
---
# Citation
If you use **Synas Detect 1** in research, benchmarks, or production systems, please cite:
```bibtex
@misc{synas_detect_1_2026,
author = {Atugil Intelligence},
title = {Synas Detect 1: High-Accuracy Synthetic Image Classifier},
year = {2026},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/Atugil-Intelligence/synas-detect-1}}
}
``` |