Deep Learning | 4 Convolutional

2018-07-06  本文已影响0人  shawn233

Edge Detection

Filter

Padding

Valid / Same Convolutions

Strided Convolutions

Convention: the filter must lie entirely inside the image plus padding to generate the result of the convolution operation.

image.shape = (n, n)
filter.shape = (f, f)
padding = p
stride = s

output.shape = ( floor( (n + 2p - f) / s + 1), floor( (n + 2p - f) / s + 1) )
padding = 0
stride = 1
(n, n, n_c) * (f, f, n_c) -> (n-f+1, n-f+1, n_f)
n_c is the number of channels of the input image
n_f is the number of filters

ConvNet Single Layer

Type of Layers in a Convolutional Network

Pooling

Classic Conv Net Architecture

上一篇 下一篇

猜你喜欢

热点阅读