this is a classification model for cat vs dog classification problem
This is a simple classification model to solve the problem of an input image is a cat or a dog using CNN.
The model consists of 4 convolutional layers each one followed by a max pooling layer and finally 2 fully connected layers.
The convolutional layers use a filter size 3 × 3 and pooling layer use 2 × 2 which reduces the size to 1/2.
The following techniques are employed to imporve performance of CNN.
Data augmentation
The number of train-data is increased to 5 times by means of
Parameter initializers
Batch normalization
All convolution/fully-connected layers use batch normalization.
Dropout
The third fully-connected layer employes dropout technique.
Exponentially decayed learning rate
A learning rate is decayed every after one-epoch.