Added more reports
Browse files- classification_report.txt +13 -0
- confusion_matrix.png +0 -0
- metrics.json +6 -0
- requirements.txt +7 -0
classification_report.txt
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Classification Report:
|
| 2 |
+
precision recall f1-score support
|
| 3 |
+
|
| 4 |
+
Real 0.95 0.97 0.96 407
|
| 5 |
+
Fake 0.97 0.95 0.96 393
|
| 6 |
+
|
| 7 |
+
accuracy 0.96 800
|
| 8 |
+
macro avg 0.96 0.96 0.96 800
|
| 9 |
+
weighted avg 0.96 0.96 0.96 800
|
| 10 |
+
|
| 11 |
+
Confusion Matrix:
|
| 12 |
+
[[396 11]
|
| 13 |
+
[ 21 372]]
|
confusion_matrix.png
ADDED
|
metrics.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 4,
|
| 3 |
+
"accuracy": 0.96,
|
| 4 |
+
"f1_score": 0.9587628865979381,
|
| 5 |
+
"auc": 0.9597689292345782
|
| 6 |
+
}
|
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fastapi
|
| 2 |
+
uvicorn
|
| 3 |
+
torch
|
| 4 |
+
transformers
|
| 5 |
+
decord
|
| 6 |
+
Pillow
|
| 7 |
+
scikit-learn
|