Convolutional Neural Network CNN/ConvNet is a Deep Learning algorithm, that deals with images, it takes an input image and assigns a learnable weight and bias values, and learns to differentiate with other images . Unlike other neural networks, the preprocessing required in ConvNet is smaller. In primitive methods filters are handed engineered, with enough training and ConvNets have the ability to learn them easily. The Architecture of ConvNet is analogous to the human system of the visual cortex (connectivity pattern of neurons in the Human Brain). Individual Neurons respond only to stimuli only the restricted region of the visual field. This is called the receptive field, and the Collection of such fields is called a visual area. What is an Image? An Image is nothing but a matrix of pixel values. 3x3 image matrix is converted into 9x1 vector. A ConvNet is able to successfully capture the Spatial and Temporal depen...
Comments
Post a Comment