prithivMLmods / deepfake-detector-model

huggingface.co
Total runs: 8.2K
24-hour runs: 0
7-day runs: 0
30-day runs: 0
Model's Last Updated: May 24 2025
image-classification

Introduction of deepfake-detector-model

Model Details of deepfake-detector-model

DF.png

deepfake-detector-model-v1

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.

Experimental

Classification Report:
              precision    recall  f1-score   support

        Fake     0.9718    0.9155    0.9428     10000
        Real     0.9201    0.9734    0.9460      9999

    accuracy                         0.9444     19999
   macro avg     0.9459    0.9444    0.9444     19999
weighted avg     0.9459    0.9444    0.9444     19999

download.png


Label Space: 2 Classes

The model classifies an image as one of the following:

Class 0: fake  
Class 1: real

Install Dependencies
pip install -q transformers torch pillow gradio hf_xet

Inference Code
import gradio as gr
from transformers import AutoImageProcessor, SiglipForImageClassification
from PIL import Image
import torch

# Load model and processor
model_name = "prithivMLmods/deepfake-detector-model-v1"  
model = SiglipForImageClassification.from_pretrained(model_name)
processor = AutoImageProcessor.from_pretrained(model_name)

# Updated label mapping
id2label = {
    "0": "fake",
    "1": "real"
}

def classify_image(image):
    image = Image.fromarray(image).convert("RGB")
    inputs = processor(images=image, return_tensors="pt")

    with torch.no_grad():
        outputs = model(**inputs)
        logits = outputs.logits
        probs = torch.nn.functional.softmax(logits, dim=1).squeeze().tolist()

    prediction = {
        id2label[str(i)]: round(probs[i], 3) for i in range(len(probs))
    }

    return prediction

# Gradio Interface
iface = gr.Interface(
    fn=classify_image,
    inputs=gr.Image(type="numpy"),
    outputs=gr.Label(num_top_classes=2, label="Deepfake Classification"),
    title="deepfake-detector-model",
    description="Upload an image to classify whether it is real or fake using a deepfake detection model."
)

if __name__ == "__main__":
    iface.launch()

Intended Use

deepfake-detector-model is designed for:

  • Deepfake Detection – Accurately identify fake images generated by AI.
  • Media Authentication – Verify the authenticity of digital visual content.
  • Content Moderation – Assist in filtering synthetic media in online platforms.
  • Forensic Analysis – Support digital forensics by detecting manipulated visual data.
  • Security Applications – Integrate into surveillance systems for authenticity verification.

Runs of prithivMLmods deepfake-detector-model on huggingface.co

8.2K
Total runs
0
24-hour runs
0
3-day runs
0
7-day runs
0
30-day runs

More Information About deepfake-detector-model huggingface.co Model

More deepfake-detector-model license Visit here:

https://choosealicense.com/licenses/apache-2.0

deepfake-detector-model huggingface.co

deepfake-detector-model huggingface.co is an AI model on huggingface.co that provides deepfake-detector-model's model effect (), which can be used instantly with this prithivMLmods deepfake-detector-model model. huggingface.co supports a free trial of the deepfake-detector-model model, and also provides paid use of the deepfake-detector-model. Support call deepfake-detector-model model through api, including Node.js, Python, http.

deepfake-detector-model huggingface.co Url

https://huggingface.co/prithivMLmods/deepfake-detector-model

prithivMLmods deepfake-detector-model online free

deepfake-detector-model huggingface.co is an online trial and call api platform, which integrates deepfake-detector-model's modeling effects, including api services, and provides a free online trial of deepfake-detector-model, you can try deepfake-detector-model online for free by clicking the link below.

prithivMLmods deepfake-detector-model online free url in huggingface.co:

https://huggingface.co/prithivMLmods/deepfake-detector-model

deepfake-detector-model install

deepfake-detector-model is an open source model from GitHub that offers a free installation service, and any user can find deepfake-detector-model on GitHub to install. At the same time, huggingface.co provides the effect of deepfake-detector-model install, users can directly use deepfake-detector-model installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

deepfake-detector-model install url in huggingface.co:

https://huggingface.co/prithivMLmods/deepfake-detector-model

Url of deepfake-detector-model

deepfake-detector-model huggingface.co Url

Provider of deepfake-detector-model huggingface.co

prithivMLmods
ORGANIZATIONS

Other API from prithivMLmods