With the entire training set, the convergence is faster and the metrics are even better than the small training set, since the model now has more data to learn from. We can calculate the accuracy over the test set.

With this model, we achieved an accuracy of 91.82% over the test set. We will use $\eta = 0.025$ and analyze other hyperparameters now.

Size of minibatch

We are using as our optimizer the Stochastic Gradient Descent (SGD). For the smaller training data we used minibatches of 10 samples and for the entire training set we used 64 samples. Now we will investigate these values.
Our aim is to find the best values, which compromises the trade-off between memory / speed usage and model efficiency.

The time spent for modelling, with minibatch of 10 samples was:

We start by analyzing the small training set, with the equivalent to the Gradient Descent, using single batch method.