Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
metrics:
|
4 |
+
- accuracy
|
5 |
+
- f1
|
6 |
+
---
|
7 |
+
Predicts with about 83% accuracy whether the human face is real or AI-generated.
|
8 |
+
|
9 |
+
See https://www.kaggle.com/code/dima806/human-faces-ai-vs-real-detection-vit for details.
|
10 |
+
|
11 |
+

|
12 |
+
|
13 |
+
```
|
14 |
+
Classification report:
|
15 |
+
|
16 |
+
precision recall f1-score support
|
17 |
+
|
18 |
+
AI-Generated Images 0.7520 0.9945 0.8564 2000
|
19 |
+
Real Images 0.9919 0.6720 0.8012 2000
|
20 |
+
|
21 |
+
accuracy 0.8333 4000
|
22 |
+
macro avg 0.8719 0.8333 0.8288 4000
|
23 |
+
weighted avg 0.8719 0.8333 0.8288 4000
|
24 |
+
```
|