Redgerd commited on
Commit
bc15b84
·
verified ·
1 Parent(s): b47a994

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -37,6 +37,27 @@ The model architecture consists of the following components:
37
  4. **Regularization**: A **Dropout layer** (`0.5` rate) prevents overfitting.
38
  5. **Output**: A **Dense layer** with `softmax` activation predicts probabilities for "Real" and "Fake" classes.
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  ### How to Use
42
 
 
37
  4. **Regularization**: A **Dropout layer** (`0.5` rate) prevents overfitting.
38
  5. **Output**: A **Dense layer** with `softmax` activation predicts probabilities for "Real" and "Fake" classes.
39
 
40
+ ## Evaluation
41
+
42
+ ### Testing Data, Factors & Metrics
43
+
44
+ #### Testing Data
45
+ The model was tested on unseen samples from the FaceForensics++ and CelebDFv2 datasets.
46
+
47
+ #### Metrics
48
+ * **Accuracy**: Measures correct classifications.
49
+ * **F1 Score**: Balances precision and recall.
50
+
51
+ ### Results
52
+
53
+ | Metric | Value |
54
+ | :----------------- | :------ |
55
+ | Training Accuracy | 98.44% |
56
+ | Validation Accuracy| 97.05% |
57
+ | Test Accuracy | 95.93% |
58
+
59
+ **Disclaimer**: These results were obtained using the FaceForensics++ and CelebDFv2 datasets. Performance in real-world scenarios may vary.
60
+
61
 
62
  ### How to Use
63