Skip to content

Commit

Permalink
Some bugfixes in "advanced layer types"
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmits committed Jan 24, 2024
1 parent e6ac215 commit c3c83cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions episodes/4-advanced-layer-types.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -494,8 +494,8 @@ As you can see this model has 1.5x more parameters than our simple CNN, let's tr
```python
compile_model(dense_model)
history = dense_model.fit(train_images, train_labels, epochs=30,
validation_data=(test_images, test_labels))
plot_history(['accuracy', 'val_accuracy'])
validation_data=(val_images, val_labels))
plot_history(history, ['accuracy', 'val_accuracy'])
```
![](fig/04_dense_model_training_history.png){alt="Plot of training accuracy and validation accuracy vs epochs for a model with only dense layers"}

Expand Down

0 comments on commit c3c83cb

Please sign in to comment.