Advertisement
_Black_Panther_

Terms of Deep Learning

Sep 7th, 2022 (edited)
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. (*) Zero Padding -- Adding zero at the edges
  2.  
  3. Why we need zero padding?
  4. Ans: If there is information at the edge of the image we will lost those information while applying filter on the image. To overcome this problem we need to add zero padding.
  5.  
  6. (*) Stride -- Stride means step to move the filter across the image.
  7.  
  8. (*) Depth -- Depth means how man filters are applied in the image. 3 filters are applied means the depth is 3.
  9.  
  10. (*) Max Pooling -- put the maximum value of the focused area. Stronger pixels are retained, not the lowest one.
  11.  
  12. After each convolution layer we use max pooling. It reduces the dimension of input image that is being sent to the next layer.
  13.  
  14. This reduces the computational load and over fitting.
  15. (*) Average Pooling -- put the average value of the focused area.
  16.  
  17. It fails to detect the sharp edges and complex features.
  18.  
  19. (*) Sum Pooling -- put the sum of all values of the focused area.
  20.  
  21.  
  22.  
  23.  
  24.  
  25. Convolutional Layer > Pooling layer > Flattening Layer > The first full connected layer > Fully connected output layer
  26.  
  27.  
  28.  
  29.  
  30. --------------------------------
  31. Lets build a CNN Model:
  32. --------------------------------
  33.  
  34.  
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement