updated readme.md with training information and new test results
Browse files
README.md
CHANGED
@@ -35,3 +35,46 @@ results:
|
|
35 |
accuracy: 0.9761
|
36 |
fraction: 3958/4055
|
37 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
accuracy: 0.9761
|
36 |
fraction: 3958/4055
|
37 |
---
|
38 |
+
|
39 |
+
# Model Training Results
|
40 |
+
|
41 |
+
## Run Summary
|
42 |
+
|
43 |
+
| Metric | Value |
|
44 |
+
|--------|-------|
|
45 |
+
| **Best Model Epoch** | 1 |
|
46 |
+
| **Best Validation Accuracy** | 99.605% |
|
47 |
+
| **Final Best Accuracy** | 99.605% |
|
48 |
+
| **Training Accuracy** | 99.829% |
|
49 |
+
| **Training Loss** | 0.00525 |
|
50 |
+
| **Validation Accuracy** | 99.605% |
|
51 |
+
| **Validation Loss** | 0.01301 |
|
52 |
+
| **Step** | 1800 |
|
53 |
+
| **Step Accuracy** | 99.837% |
|
54 |
+
| **Step Loss** | 0.00009 |
|
55 |
+
|
56 |
+
## Test Results
|
57 |
+
|
58 |
+
| Metric | Value |
|
59 |
+
|--------|-------|
|
60 |
+
| **Overall Accuracy** | 96.74% |
|
61 |
+
| **Overall Accuracy Fraction** | 7861/8126 |
|
62 |
+
| **Real Images Accuracy** | 97.25% (3959/4071) |
|
63 |
+
| **Fake Images Accuracy** | 96.23% (3902/4055) |
|
64 |
+
|
65 |
+
### Confusion Matrix
|
66 |
+
|
67 |
+
| True Label | Predicted Label | Count |
|
68 |
+
|------------|----------------|-------|
|
69 |
+
| fake | fake | 3902 |
|
70 |
+
| fake | real | 153 |
|
71 |
+
| real | real | 3959 |
|
72 |
+
| real | fake | 112 |
|
73 |
+
|
74 |
+
## Key Achievements
|
75 |
+
|
76 |
+
- **Exceptional Training Performance**: Achieved 99.6% validation accuracy in just 1 epoch
|
77 |
+
- **Strong Test Performance**: 96.74% accuracy on test set with balanced performance across classes
|
78 |
+
- **Fast Convergence**: Best model found at epoch 1, demonstrating effective fine-tuning
|
79 |
+
- **Low Loss**: Final step loss of 9e-05 indicates excellent model convergence
|
80 |
+
- **Robust Classification**: Real images (97.25%) and fake images (96.23%) both classified with high accuracy
|