SadraCoding commited on
Commit
87d9f5a
Β·
verified Β·
1 Parent(s): 34efee7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -11
README.md CHANGED
@@ -1,29 +1,45 @@
1
- # 🎭 SDXL-Deepfake-Detector
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- **A high-performance deep learning model fine-tuned for the binary classification of real vs. fake faces, specifically targeting synthesized images, including those potentially generated by powerful models like SDXL.**
4
 
5
- This project was developed by **[Sadra Milani Moghadam](https://sadramilani.ir)**.
6
 
7
- ---
8
 
9
  ## πŸš€ Model Description
10
 
11
- The **SDXL-Deepfake-Detector** is a specialized image classification model designed to distinguish between authentic human faces and synthetically generated (deepfake) faces. It leverages the power of transfer learning to provide robust, high-accuracy detection.
12
 
13
  ### Key Features & Performance
14
 
15
- | Feature | Value / Metric | Notes |
16
  | :--- | :--- | :--- |
17
- | **Task** | Binary Image Classification | Real Face vs. Deepfake Face |
18
- | **Dataset Used** | [140K Real and Fake Faces (Kaggle)](https://www.kaggle.com/datasets/xhlulu/140k-real-and-fake-faces) | Comprehensive dataset of 140,000 high-quality images. |
19
- | **Test Accuracy** | **0.91** (91%) | Demonstrates strong performance in distinguishing image authenticity. |
20
- | **Hardware Used** | NVIDIA RTX 3060 (12GB VRAM) | Optimized training time due to suitable GPU hardware. |
21
 
22
  ---
23
 
24
  ## πŸ’» Usage with Hugging Face Transformers
25
 
26
- You can easily load and run this model for inference using the Hugging Face `transformers` library in Python.
 
 
 
 
 
27
 
28
  ---
29
  license: mit
 
1
+ ---
2
+ tags:
3
+ - image-classification
4
+ - computer-vision
5
+ - deepfake-detection
6
+ - fine-tuned
7
+ license: mit
8
+ datasets:
9
+ - 140k-real-and-fake-faces
10
+ metrics:
11
+ - accuracy
12
+ ---
13
 
14
+ # 🎭 SDXL-Deepfake-Detector
15
 
16
+ **A high-performance deep learning model fine-tuned for the binary classification of real vs. fake faces, designed for images potentially generated by advanced synthesis models.**
17
 
18
+ This project was developed by **[Sadra Milani Moghadam](https://sadramilani.ir/)**.
19
 
20
  ## πŸš€ Model Description
21
 
22
+ The **SDXL-Deepfake-Detector** is a specialized image classification model engineered to distinguish between authentic human faces and synthetically generated (deepfake) faces. The model was trained using **transfer learning** principles to provide robust and reliable detection.
23
 
24
  ### Key Features & Performance
25
 
26
+ | Metric | Value | Notes |
27
  | :--- | :--- | :--- |
28
+ | **Task** | Binary Image Classification | Real Face (0) vs. Deepfake Face (1) |
29
+ | **Dataset** | [140K Real and Fake Faces (Kaggle)](https://www.kaggle.com/datasets/xhlulu/140k-real-and-fake-faces) | A large dataset containing 140,000 high-quality images. |
30
+ | **Test Accuracy** | **0.91** (91%) | Achieved on the independent test set. |
31
+ | **Hardware** | NVIDIA RTX 3060 (12GB VRAM) | Training performed on suitable hardware for efficiency. |
32
 
33
  ---
34
 
35
  ## πŸ’» Usage with Hugging Face Transformers
36
 
37
+ To load and use the model in your Python environment, use the standard `transformers` and `PIL` libraries.
38
+
39
+ ### Installation
40
+
41
+ ```bash
42
+ pip install transformers torch pillow
43
 
44
  ---
45
  license: mit