agasta commited on
Commit
147d4ad
·
verified ·
1 Parent(s): bf4e512

Added more reports

Browse files
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