Simple NN for fruits classification based on Fruits360 dataset
Implementation of simple nn with convolutional layers and last linear layer with softmax to predict class of the image.
- Flattener layer used to change input from conv layers to Fully-Connected\Linear.
- There are no biases in convolutional layer, because of batch normalization layers. BN has biases inside.
- Trained on GPU in Google Colab.
- There is no need to use grid search, because it is easy to achieve training convergence without much experiments. Just make higher L2 to obtain better result on test.