Skip to main content

Maxpool

 This layer is used to downsample the shape of an image

Suppose you have an image-

[ 2 3 4 5

  3 4 5 6

  4 5 6 7 ]

if pool size is (2,2) then output will

[ 4 6

  5 7 ]

Comments

Popular posts from this blog

What is Deep Learning?

Machine Learning Machine Learning is the subset of A.I it cannot extracts too hard features but its does not requires too much data Deep Learning Deep Learning is the subset of machine learning it can extracts difficult features but its requires too much data Which one I have to use? It is totally depends on data if you have too much data you can use deep learning else you can use machine learning

CNN(Convolution Neural Network)

 CNN(Convolution Neural Network) CNN is used to classify images CNN is most effective for 2D data CNN has three layers-: 1> Convolution layer for extracting feature 2> Max Pooling layer for reducing dimension 3> Flatten for Convert 2D to 1D because we have to pass to ANN prediction 4> Next ANN Network