3-D max pooling layer
A 3-D max pooling layer performs downsampling by dividing three-dimensional input into cuboidal pooling regions, and computing the maximum of each region.
creates a 3-D max pooling layer and sets the layer
= maxPooling3dLayer(poolSize
)PoolSize
property.
sets the optional layer
= maxPooling3dLayer(poolSize
,Name,Value
)Stride
and Name
properties using name-value pairs. To specify input padding, use the
'Padding'
name-value pair argument. For example,
maxPooling3dLayer(2,'Stride',3)
creates a 3-D max pooling layer with
pool size [2 2 2]
and stride [3 3 3]
. You can
specify multiple name-value pairs. Enclose each property name in single quotes.
averagePooling3dLayer
| convolution3dLayer
| globalAveragePooling3dLayer
| maxPooling2dLayer