By evaluating the graphics it looks like our model got slightly better. The accuracy over the test set was slightly better as well, going from 96.61% to 96.86%.

Dropout

There is still another technique, commonly used, which applies regularization very effectively over the model. The dropout technique hiddens random nodes each time the network is trained, so each time, the network is a different network, with different nodes, weights and data. The final model will consider all nodes, but they will be more independent and less heavily correlated, thus robust to overfitting. We will apply a dropout rate of 50%.