Zubnet AIसीखेंWiki › Pooling
मूल सिद्धांत

Pooling

Max Pooling, Average Pooling
एक operation जो एक region को एक single value में summarize करके data की spatial dimensions reduce करता है। Max pooling हर region में maximum value लेता है। Average pooling mean लेता है। CNNs में, pooling layers convolutional layers के बीच feature maps को downsample करती हैं। Transformers में, pooling token representations को एक single vector में combine करता है (जैसे classification के लिए)।

यह क्यों matter करता है

Pooling वो तरीका है जिससे neural networks local features से global understanding की ओर जाते हैं। एक CNN 224×224 feature maps से start कर सकता है और final layer तक 7×7 पर pool कर सकता है, spatial information को progressively summarize करते हुए। NLP में, token embeddings पर mean pooling token representations की sequence से एक single sentence embedding create करने का standard way है।

Deep Dive

In CNNs: a 2×2 max pool with stride 2 takes every 2×2 region, keeps the maximum value, and reduces each spatial dimension by half. This achieves two things: translation invariance (small shifts in the input don't change the output) and dimensionality reduction (fewer values to process in subsequent layers). Average pooling does the same but takes the mean, which preserves more information but is less robust to noise.

Pooling in NLP

To create a fixed-size embedding from a variable-length sequence of tokens, you need to pool. Common strategies: [CLS] token pooling (use the representation of a special token, as in BERT), mean pooling (average all token representations — usually the best for sentence embeddings), max pooling (take the element-wise max across tokens), and weighted pooling (weight tokens by attention scores). Most embedding models use mean pooling for its simplicity and effectiveness.

Global Average Pooling

In modern vision architectures, global average pooling replaces the fully connected layers that older CNNs used for classification. Instead of flattening the final feature map into a vector (which creates millions of parameters), global average pooling averages each feature map channel to a single number. This produces a compact representation with no learned parameters, acting as a strong regularizer. Vision Transformers use a similar approach with the [CLS] token.

संबंधित अवधारणाएँ

← सभी Terms
← PixVerse Positional Encoding →