Skip to content

Commit 2dd75cf

Browse files
Update README.md
1 parent 7eb83e2 commit 2dd75cf

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ Now, we'll run the training data through the training pipeline to train the mode
280280
- A low accuracy on the training and validation sets imply underfitting. A high accuracy on the training set but low accuracy on the validation set implies overfitting.
281281

282282
### LeNet Model
283-
283+
```
284284
EPOCH 1 : Validation Accuracy = 81.451%
285285
EPOCH 2 : Validation Accuracy = 87.755%
286286
EPOCH 3 : Validation Accuracy = 90.113%
@@ -311,13 +311,13 @@ EPOCH 27 : Validation Accuracy = 95.329%
311311
EPOCH 28 : Validation Accuracy = 94.218%
312312
EPOCH 29 : Validation Accuracy = 94.286%
313313
EPOCH 30 : Validation Accuracy = 94.853%
314-
314+
```
315315
We've been able to reach a maximum accuracy of **95.3%** on the validation set over 30 epochs, using a learning rate of 0.001.
316316

317317
Now, we'll train the VGGNet model and evaluate it's accuracy.
318318

319319
### VGGNet Model
320-
320+
```
321321
EPOCH 1 : Validation Accuracy = 31.655%
322322
EPOCH 2 : Validation Accuracy = 59.592%
323323
EPOCH 3 : Validation Accuracy = 78.639%
@@ -348,6 +348,7 @@ EPOCH 27 : Validation Accuracy = 99.048%
348348
EPOCH 28 : Validation Accuracy = 99.116%
349349
EPOCH 29 : Validation Accuracy = 98.458%
350350
EPOCH 30 : Validation Accuracy = 99.161%
351+
```
351352

352353
Using VGGNet, we've been able to reach a maximum **validation accuracy of 99.3%**. As you can observe, the model has nearly saturated after only 10 epochs, so we can reduce the epochs to 10 and save computational resources.
353354

0 commit comments

Comments
 (0)