🎯 Design, train, test a network similar LeNet and apply Regularization methods for sloveing Overfit problem which has been uesed CIFAR-10 dataset
- model summary
- accuracy chart for train and test data
- Confusion Matrix
-
Dropout layers:It is used to prevent over-fitting. In such a way that we randomly ignore a percentage of neurons during network training. The large number of parameters of the network and the strong dependence between neurons cause the power of each neuron to be limited and overfit on the most data.
-
Batch normalization:Instead of normalizing only the initial input, normalize the input of all layers.One of the advantages of using this method is that the weight of some neurons does not increase too much
-
Augmentation:More training data for network training
- accuracy chart for train and test data
- Confusion Matrix after regularization