项目作者: subhadeep-123

项目描述 :
This Repository contains my implementation on Constitutional Neural Networks on Cats and Dogs dataset
高级语言: Jupyter Notebook
项目地址: git://github.com/subhadeep-123/Cats-and-Dogs.git
创建时间: 2019-07-03T07:03:32Z
项目社区:https://github.com/subhadeep-123/Cats-and-Dogs

开源协议:GNU General Public License v3.0

下载


Cats & Dogs with Convolutional Neural Networks



What is Convolutional Neural Networks?

In deep learning, a convolutional neural network (CNN, or ConvNet) is a class of deep neural networks, most commonly applied to analyzing visual imagery.

CNNs are regularized versions of multilayer perceptrons. Multilayer perceptrons usually refer to fully connected networks, that is, each neuron in one layer is connected to all neurons in the next layer. The “fully-connectedness” of these networks makes them prone to overfitting data. Typical ways of regularization include adding some form of magnitude measurement of weights to the loss function. However, CNNs take a different approach towards regularization: they take advantage of the hierarchical pattern in data and assemble more complex patterns using smaller and simpler patterns. Therefore, on the scale of connectedness and complexity, CNNs are on the lower extreme.