Update README.md
Browse files
README.md
CHANGED
|
@@ -17,9 +17,9 @@ language:
|
|
| 17 |
|
| 18 |

|
| 19 |
|
| 20 |
-
# deepfake-detector-model
|
| 21 |
|
| 22 |
-
> `deepfake-detector-model` is a vision-language encoder model fine-tuned from
|
| 23 |
|
| 24 |
> [!warning]
|
| 25 |
Experimental
|
|
@@ -68,7 +68,7 @@ from PIL import Image
|
|
| 68 |
import torch
|
| 69 |
|
| 70 |
# Load model and processor
|
| 71 |
-
model_name = "prithivMLmods/deepfake-detector-model"
|
| 72 |
model = SiglipForImageClassification.from_pretrained(model_name)
|
| 73 |
processor = AutoImageProcessor.from_pretrained(model_name)
|
| 74 |
|
|
|
|
| 17 |
|
| 18 |

|
| 19 |
|
| 20 |
+
# deepfake-detector-model-v1
|
| 21 |
|
| 22 |
+
> `deepfake-detector-model-v1` is a vision-language encoder model fine-tuned from google/siglip-base-patch16-512 for binary deepfake image classification. It is trained to detect whether an image is real or generated using synthetic media techniques. The model uses the `SiglipForImageClassification` architecture.
|
| 23 |
|
| 24 |
> [!warning]
|
| 25 |
Experimental
|
|
|
|
| 68 |
import torch
|
| 69 |
|
| 70 |
# Load model and processor
|
| 71 |
+
model_name = "prithivMLmods/deepfake-detector-model-v1"
|
| 72 |
model = SiglipForImageClassification.from_pretrained(model_name)
|
| 73 |
processor = AutoImageProcessor.from_pretrained(model_name)
|
| 74 |
|