Update README.md
Browse files
README.md
CHANGED
@@ -12,6 +12,8 @@ library_name: transformers
|
|
12 |
A fine-tuned model trained on 60,000 AI-generated and 60,000 human images.
|
13 |
The model demonstrates strong capability in detecting high-quality, state-of-the-art AI-generated images from models such as Midjourney v6.1, Flux 1.1 Pro, Stable Diffusion 3.5, GPT-4o, and other trending generation models.
|
14 |
|
|
|
|
|
15 |
## Evaluation Metrics
|
16 |
|
17 |

|
@@ -49,6 +51,9 @@ The model demonstrates strong capability in detecting high-quality, state-of-the
|
|
49 |
* Final Test F1 Score (Weighted): 0.9923
|
50 |
|
51 |
## Usage
|
|
|
|
|
|
|
52 |
```python
|
53 |
import torch
|
54 |
from PIL import Image as PILImage
|
|
|
12 |
A fine-tuned model trained on 60,000 AI-generated and 60,000 human images.
|
13 |
The model demonstrates strong capability in detecting high-quality, state-of-the-art AI-generated images from models such as Midjourney v6.1, Flux 1.1 Pro, Stable Diffusion 3.5, GPT-4o, and other trending generation models.
|
14 |
|
15 |
+
Detailed Training Code is available here: [blog/ai/fine-tuning-siglip2](https://exnrt.com/blog/ai/fine-tuning-siglip2/)
|
16 |
+
|
17 |
## Evaluation Metrics
|
18 |
|
19 |

|
|
|
51 |
* Final Test F1 Score (Weighted): 0.9923
|
52 |
|
53 |
## Usage
|
54 |
+
```
|
55 |
+
pip install -q transformers torch Pillow accelerate
|
56 |
+
```
|
57 |
```python
|
58 |
import torch
|
59 |
from PIL import Image as PILImage
|