Zubnet AIसीखेंWiki › CNN
Models

CNN

Convolutional Neural Network, ConvNet
एक neural network architecture जो grid-like data (images, audio spectrograms) process करने के लिए design है, input पर small filters (kernels) slide करके local patterns जैसे edges, textures, और shapes detect करती है। CNNs 2012 (AlexNet) से 2020 के आसपास Vision Transformers emerge होने तक computer vision में हावी रहे। वो अभी भी production में widely used हैं, especially edge devices पर।

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

CNNs ने deep learning revolution शुरू की। AlexNet की 2012 ImageNet victory ने साबित किया कि deep neural networks hand-engineered features को dramatically outperform कर सकते हैं, current AI boom trigger करते हुए। CNNs समझना आपको ये समझने में help करता है कि Transformers क्यों काम करते हैं (कई same ideas — hierarchical features, parameter sharing — apply होते हैं), और CNNs resource-constrained devices पर कई vision tasks के लिए best choice बने रहते हैं।

Deep Dive

A CNN's core operation is convolution: a small filter (say 3×3 pixels) slides across the image, computing a dot product at each position to detect a specific pattern. Early layers learn simple patterns (edges, color gradients). Deeper layers combine these into increasingly complex features (eyes, wheels, faces). Pooling layers downsample between convolution layers, reducing spatial dimensions while preserving important features.

Why CNNs Work

Two key properties make CNNs efficient: translation equivariance (a cat is a cat regardless of where it appears in the image — the same filter detects it everywhere) and locality (nearby pixels are more related than distant ones). These properties drastically reduce the number of parameters compared to fully connected networks, making CNNs tractable for high-resolution images.

CNNs Beyond Images

CNNs aren't limited to images. 1D convolutions process sequences (audio waveforms, time series). WaveNet (for speech synthesis) and some text classification models use 1D CNNs. In audio, spectrograms are treated as 2D images and processed with standard 2D CNNs. Even in the Transformer era, some hybrid architectures use convolutional layers for local feature extraction before feeding into attention layers.

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

← सभी Terms
← Clustering Cohere →