Update README.md
Browse files
README.md
CHANGED
|
@@ -64,4 +64,17 @@ with torch.no_grad():
|
|
| 64 |
# Map class index to label
|
| 65 |
label = model.config.id2label[predicted_class]
|
| 66 |
print(f"Predicted Label: {label}")
|
| 67 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
# Map class index to label
|
| 65 |
label = model.config.id2label[predicted_class]
|
| 66 |
print(f"Predicted Label: {label}")
|
| 67 |
+
```
|
| 68 |
+
# **Limitations**
|
| 69 |
+
1. **Generalization Issues** β The model may not perform well on deepfake images generated by unseen or novel deepfake techniques.
|
| 70 |
+
2. **Dataset Bias** β The training data might not cover all variations of real and fake images, leading to biased predictions.
|
| 71 |
+
3. **Resolution Constraints** β Since the model is based on `vit-base-patch16-224-in21k`, it is optimized for 224x224 image resolution, which may limit its effectiveness on high-resolution images.
|
| 72 |
+
4. **Adversarial Vulnerabilities** β The model may be susceptible to adversarial attacks designed to fool vision transformers.
|
| 73 |
+
5. **False Positives & False Negatives** β The model may occasionally misclassify real images as deepfake and vice versa, requiring human validation in critical applications.
|
| 74 |
+
|
| 75 |
+
# **Intended Use**
|
| 76 |
+
1. **Deepfake Detection** β Designed for identifying deepfake images in media, social platforms, and forensic analysis.
|
| 77 |
+
2. **Research & Development** β Useful for researchers studying deepfake detection and improving ViT-based classification models.
|
| 78 |
+
3. **Content Moderation** β Can be integrated into platforms to detect and flag manipulated images.
|
| 79 |
+
4. **Security & Forensics** β Assists in cybersecurity applications where verifying the authenticity of images is crucial.
|
| 80 |
+
5. **Educational Purposes** β Can be used in training AI practitioners and students in the field of computer vision and deepfake detection.
|