prithivMLmods commited on
Commit
2295864
·
verified ·
1 Parent(s): 91ab411

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -17,9 +17,9 @@ language:
17
 
18
  ![DF.png](https://cdn-uploads.huggingface.co/production/uploads/65bb837dbfb878f46c77de4c/du5WF3GmRq5czAvXyuggx.png)
19
 
20
- # deepfake-detector-model
21
 
22
- > `deepfake-detector-model` is a vision-language encoder model fine-tuned from [`siglip2-base-patch16-512`](https://huggingface.co/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,7 +68,7 @@ from PIL import Image
68
  import torch
69
 
70
  # Load model and processor
71
- model_name = "prithivMLmods/deepfake-detector-model" # Updated model name
72
  model = SiglipForImageClassification.from_pretrained(model_name)
73
  processor = AutoImageProcessor.from_pretrained(model_name)
74
 
 
17
 
18
  ![DF.png](https://cdn-uploads.huggingface.co/production/uploads/65bb837dbfb878f46c77de4c/du5WF3GmRq5czAvXyuggx.png)
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