Learn Before
Pooling Parameters and Hyperparameters in Convolutional Deep Learning
A pooling layer is configured entirely through hyperparameters rather than learned parameters. The key hyperparameters are the pooling window size (which can be specified as a single integer for a square window or as a tuple for a rectangular window with distinct height and width), the stride (the number of elements the window moves per step), the type of aggregation (max or average), and the amount of padding applied to the input borders. Because pooling computes a fixed, deterministic function—either the maximum or the average—there are no weight parameters to learn, and therefore no parameter initialization is needed. A widely adopted default configuration uses a pooling window, which quarters the spatial resolution of the output (halving both height and width), providing an effective balance between downsampling and information retention.
0
1
Contributors are:
Who are from:
Tags
Data Science
D2L
Dive into Deep Learning @ D2L
Related
The output size of pooling
Classifying Skin Lesions with Convolutional Neural Networks
Advantages of Pooling in Convolutional Deep Learning
Types of Pooling Layer in Convolutional Deep Learning
Pooling Parameters and Hyperparameters in Convolutional Deep Learning
Role of pooling
Two-Dimensional Pooling Layer Code Implementation
Pooling vs. Convolution in Multi-Channel Processing