For the model's architecture, we will use a variation of the VGG network. This architecture is taken from a publicly available script from the forums ( https://www.kaggle.com/jeffd23/dogs-vs-cats-redux-kernels-edition/catdognet-keras-convnet-starter) and here we will adapt this example to DeepLearning4j.
The architecture we will use is as follows:
- Two layers of 3 x 3 convolution with 32 filters
- Max pooling
- Two layers of 3 x 3 convolution with ...