From 860b7e5941848f83bf443d84a7628d2364712952 Mon Sep 17 00:00:00 2001 From: Haritham <33144819+Harithahhh@users.noreply.github.com> Date: Thu, 25 Oct 2018 07:25:17 -0700 Subject: [PATCH] Why Convolutional Neural Network (#25662) * Why Convolutional Neural Network Why we go for Convolutional Neural Networks. * Update index.md --- .../neural-networks/convolutional-neural-networks/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guide/english/machine-learning/neural-networks/convolutional-neural-networks/index.md b/guide/english/machine-learning/neural-networks/convolutional-neural-networks/index.md index 68ce897a9b..8c35d83df9 100644 --- a/guide/english/machine-learning/neural-networks/convolutional-neural-networks/index.md +++ b/guide/english/machine-learning/neural-networks/convolutional-neural-networks/index.md @@ -4,6 +4,10 @@ title: Convolutional Neural Networks Convolutional Neural Networks (ConvNets or CNNs) are a category of Neural Networks that have proven very effective in areas such as image recognition and classification. ConvNets have been successful in identifying faces, objects and traffic signs apart from powering vision in robots and self driving cars. +### Why Convolutional Neural Network + +CNNs are biologically inspired models on how mammals visually perceive things. When we see something a layer of neurons are activated in our brain. The very same concept is working here too. The birth of CNN is inspired by Local connection, layering, spatial invariance. Compared to the similar size of feed forward neural network the CNN only require much fewer connections and parameters, hence they are easier to train and also the time consumption is less. CNN is effective for both the high level and low level features in dataset. Another important factor of CNN is the depth of the layers. + ### Suggested links : - Stanford CS231n [Lecture 5 Convolutional Neural Networks](https://www.youtube.com/watch?v=bNb2fEVKeEo) - Stanford CS231n [Lecture 9 CNN Architectures](https://www.youtube.com/watch?v=DAOcjicFr1Y&t=2384s)