Shad0wKillar commited on
Commit
a01a93f
·
verified ·
1 Parent(s): 2671ed2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -36,7 +36,7 @@ I used a 20% subset of a pizza, steak, and sushi dataset. The data was split int
36
  ### Accuracy and Loss Curves
37
  Over the 10 epochs, both the training and testing loss steadily decreased, with the testing loss ending below 0.40. The testing accuracy outperformed the training accuracy early on and finished highly stable above 90%.
38
 
39
- ![Loss and Accuracy Curves](plots/EfficientNet_B1_20percent.pth_curves.png)
40
 
41
  ### Confusion Matrix
42
  The model performs exceptionally well across all three classes on the test set:
@@ -44,12 +44,12 @@ The model performs exceptionally well across all three classes on the test set:
44
  * **Steak:** 56 correct, 0 misclassified as pizza, 2 misclassified as sushi.
45
  * **Sushi:** 42 correct, 3 misclassified as pizza, 1 misclassified as steak.
46
 
47
- ![Confusion Matrix](plots/EfficientNet_B1_20percent.pth_confusion_matrix.png)
48
 
49
  ### Most Confident Wrong Predictions
50
  I plotted the instances where the model was highly confident but incorrect. The model occasionally struggled with distinguishing close-up textures, such as predicting a steak dish as sushi with 0.82 confidence, or a sushi dish as pizza with 0.61 confidence.
51
 
52
- ![Wrong Predictions](plots/EfficientNet_B1_20percent.pth_wrong_pred.png)
53
 
54
  ## How to use
55
  ```python
 
36
  ### Accuracy and Loss Curves
37
  Over the 10 epochs, both the training and testing loss steadily decreased, with the testing loss ending below 0.40. The testing accuracy outperformed the training accuracy early on and finished highly stable above 90%.
38
 
39
+ ![Loss and Accuracy Curves](EfficientNet_B1_20percent.pth_curves.png)
40
 
41
  ### Confusion Matrix
42
  The model performs exceptionally well across all three classes on the test set:
 
44
  * **Steak:** 56 correct, 0 misclassified as pizza, 2 misclassified as sushi.
45
  * **Sushi:** 42 correct, 3 misclassified as pizza, 1 misclassified as steak.
46
 
47
+ ![Confusion Matrix](EfficientNet_B1_20percent.pth_confusion_matrix.png)
48
 
49
  ### Most Confident Wrong Predictions
50
  I plotted the instances where the model was highly confident but incorrect. The model occasionally struggled with distinguishing close-up textures, such as predicting a steak dish as sushi with 0.82 confidence, or a sushi dish as pizza with 0.61 confidence.
51
 
52
+ ![Wrong Predictions](EfficientNet_B1_20percent.pth_wrong_pred.png)
53
 
54
  ## How to use
55
  ```python