Convolutional neural network - Wikipedia
https://en.wikipedia.org/wiki/Convolutional_neural_networkIn deep learning, a convolutional neural network (CNN, or ConvNet) is a class of artificial neural network, most commonly applied to analyze visual imagery. They are also known as shift invariant or space invariant artificial neural networks (SIANN), based on the shared-weight architecture of the convolution kernels or filters that slide along input features and provide translation equivari…
CNN Image Classification | Towards Data Science
https://towardsdatascience.com/cnn-classification-a-cat-or-a-dog-568e6...30.10.2020 · classifier = Sequential () classifier.add (Conv2D (32, (3, 3), input_shape = (64, 64, 3), activation = 'relu')) Note, the number of feature detectors is set to be 32, and its dimension is (3, 3). In most CNN architectures, a common practice is to start with 32 feature detectors and increase to 64 or 128 if needed.