File size: 563 Bytes
004088a 8ec6932 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
---
license: apache-2.0
metrics:
- accuracy
- f1
---
Checks whether an image is real or fake (AI-generated).
See https://www.kaggle.com/code/dima806/deepfake-vs-real-faces-detection-vit for more details.
```
Classification report:
precision recall f1-score support
Real 0.9933 0.9937 0.9935 4761
Fake 0.9937 0.9933 0.9935 4760
accuracy 0.9935 9521
macro avg 0.9935 0.9935 0.9935 9521
weighted avg 0.9935 0.9935 0.9935 9521
``` |