What is a convolutional neural network (CNN)? (2024)

By

  • Lev Craig,Site Editor
  • Rahul Awati

What is a convolutional neural network (CNN)?

A convolutional neural network (CNN) is a category of machine learning model, namely a type of deep learning algorithm well suited to analyzing visual data. CNNs -- sometimes referred to as convnets -- use principles from linear algebra, particularly convolution operations, to extract features and identify patterns within images. Although CNNs are predominantly used to process images, they can also be adapted to work with audio and other signal data.

CNN architecture is inspired by the connectivity patterns of the human brain -- in particular, the visual cortex, which plays an essential role in perceiving and processing visual stimuli. The artificial neurons in a CNN are arranged to efficiently interpret visual information, enabling these models to process entire images. Because CNNs are so effective at identifying objects, they are frequently used for computer vision tasks such as image recognition and object detection, with common use cases including self-driving cars, facial recognition and medical image analysis.

Unlike CNNs, older forms of neural networks often needed to process visual data in a piecemeal manner, using segmented or lower-resolution input images. A CNN's comprehensive approach to image recognition lets it outperform a traditional neural network on a range of image-related tasks and, to a lesser extent, speech and audio processing.

How do convolutional neural networks work?

CNNs use a series of layers, each of which detects different features of an input image. Depending on the complexity of its intended purpose, a CNN can contain dozens, hundreds or even thousands of layers, each building on the outputs of previous layers to recognize detailed patterns.

This article is part of

A guide to artificial intelligence in the enterprise

  • Which also includes:
  • How can AI drive revenue? Here are 10 approaches
  • 8 jobs that AI can't replace and why
  • 10 top AI and machine learning trends for 2024

The process starts by sliding a filter designed to detect certain features over the input image, a process known as the convolution operation (hence the name "convolutional neural network"). The result of this process is a feature map that highlights the presence of the detected features in the image. This feature map then serves as input for the next layer, enabling a CNN to gradually build a hierarchical representation of the image.

Initial filters usually detect basic features, such as lines or simple textures. Subsequent layers' filters are more complex, combining the basic features identified earlier on to recognize more complex patterns. For example, after an initial layer detects the presence of edges, a deeper layer could use that information to start identifying shapes.

Between these layers, the network takes steps to reduce the spatial dimensions of the feature maps to improve efficiency and accuracy. In the final layers of a CNN, the model makes a final decision -- for example, classifying an object in an image -- based on the output from the previous layers.

Unpacking the architecture of a CNN

A CNN typically consists of several layers, which can be broadly categorized into three groups: convolutional layers, pooling layers and fully connected layers. As data passes through these layers, the complexity of the CNN increases, which lets the CNN successively identify larger portions of an image and more abstract features.

Convolutional layer

The convolutional layer is the fundamental building block of a CNN and is where the majority of computations occur. This layer uses a filter or kernel -- a small matrix of weights -- to move across the receptive field of an input image to detect the presence of specific features.

The process begins by sliding the kernel over the image's width and height, eventually sweeping across the entire image over multiple iterations. At each position, a dot product is calculated between the kernel's weights and the pixel values of the image under the kernel. This transforms the input image into a set of feature maps or convolved features, each of which represents the presence and intensity of a certain feature at various points in the image.

CNNs often include multiple stacked convolutional layers. Through this layered architecture, the CNN progressively interprets the visual information contained in the raw image data. In the earlier layers, the CNN identifies basic features such as edges, textures or colors. Deeper layers receive input from the feature maps of previous layers, enabling them to detect more complex patterns, objects and scenes.

Pooling layer

The pooling layer of a CNN is a critical component that follows the convolutional layer. Similar to the convolutional layer, the pooling layer's operations involve a sweeping process across the input image, but its function is otherwise different.

The pooling layer aims to reduce the dimensionality of the input data while retaining critical information, thus improving the network's overall efficiency. This is typically achieved through downsampling: decreasing the number of data points in the input.

For CNNs, this typically means reducing the number of pixels used to represent the image. The most common form of pooling is max pooling, which retains the maximum value within a certain window (i.e., the kernel size) while discarding other values. Another common technique, known as average pooling, takes a similar approach but uses the average value instead of the maximum.

Downsampling significantly reduces the overall number of parameters and computations. In addition to improving efficiency, this strengthens the model's generalization ability. Less complex models with higher-level features are typically less prone to overfitting -- a phenomenon that occurs when a model learns noise and overly specific details in its training data, negatively affecting its ability to generalize to new, unseen information.

Reducing the spatial size of the representation does have a potential downside, namely loss of some information. However, learning only the most prominent features of the input data is usually sufficient for tasks such as object detection and image classification.

Fully connected layer

The fully connected layer plays a critical role in the final stages of a CNN, where it is responsible for classifying images based on the features extracted in the previous layers. The term fully connected means that each neuron in one layer is connected to each neuron in the subsequent layer.

The fully connected layer integrates the various features extracted in the previous convolutional and pooling layers and maps them to specific classes or outcomes. Each input from the previous layer connects to each activation unit in the fully connected layer, enabling the CNN to simultaneously consider all features when making a final classification decision.

Not all layers in a CNN are fully connected. Because fully connected layers have many parameters, applying this approach throughout the entire network would create unnecessary density, increase the risk of overfitting and make the network very expensive to train in terms of memory and compute. Limiting the number of fully connected layers balances computational efficiency and generalization ability with the capability to learn complex patterns.

What is a convolutional neural network (CNN)? (1)

CNNs vs. traditional neural networks

A more traditional form of neural networks, known as multilayer perceptrons, consists entirely of fully connected layers. These neural networks, while versatile, are not optimized for spatial data like images. This can create a number of problems when using them to handle larger, more complex input data.

For a smaller image with fewer color channels, a traditional neural network might produce satisfactory results. But as image size and complexity increase, so does the amount of computational resources required. Another major issue is the tendency to overfit, as fully connected architectures do not automatically prioritize the most relevant features and are more likely to learn noise and other irrelevant information.

CNNs differ from traditional neural networks in a few key ways. Importantly, in a CNN, not every node in a layer is connected to each node in the next layer. Because their convolutional layers have fewer parameters compared with the fully connected layers of a traditional neural network, CNNs perform more efficiently on image processing tasks.

CNNs use a technique known as parameter sharing that makes them much more efficient at handling image data. In the convolutional layers, the same filter -- with fixed weights -- is used to scan the entire image, drastically reducing the number of parameters compared to a fully connected layer of a traditional neural network. The pooling layers further reduce the dimensionality of the data to improve a CNN's overall efficiency and generalizability.

Convolutional vs. recurrent neural networks

Recurrent neural networks (RNNs) are a type of deep learning algorithm designed to process sequential or time series data. RNNs are well suited for use in natural language processing (NLP), language translation, speech recognition and image captioning, where the temporal sequence of data is particularly important. CNNs, in contrast, are primarily specialized for processing spatial data, such as images. They excel at image-related tasks such as image recognition, object classification and pattern recognition.

Benefits of using CNNs for deep learning

Deep learning, a subcategory of machine learning, uses multilayered neural networks that offer several benefits over simpler single-layer networks. Both RNNs and CNNs are forms of deep learning algorithms.

What is a convolutional neural network (CNN)? (2)

CNNs are especially useful for computer vision tasks such as image recognition and classification because they are designed to learn the spatial hierarchies of features by capturing essential features in early layers and complex patterns in deeper layers. One of the most significant advantages of CNNs is their ability to perform automatic feature extraction or feature learning. This eliminates the need to extract features manually, historically a labor-intensive and complex process.

CNNs are also well suited for transfer learning, in which a pretrained model is fine-tuned for new tasks. This reusability makes CNNs versatile and efficient, particularly for tasks with limited training data. Building on preexisting networks enables machine learning developers to deploy CNNs in various real-world scenarios while minimizing computational costs.

As described above, CNNs are more computationally efficient than traditional fully connected neural networks thanks to their use of parameter sharing. Due to their streamlined architecture, CNNs can be deployed on a wide range of devices, including mobile devices such as smartphones, and in edge computing scenarios.

For more on artificial intelligence-related terms, read the following articles:

Artificial intelligence vs. human intelligence: How are they different?

AI vs. machine learning vs. deep learning: Key differences

Main types of artificial intelligence: Explained

Top AI and machine learning trends

Types of AI algorithms and how they work

What is trustworthy AI and why is it important?

The future of AI: What to expect in the next 5 years

AI regulation: What businesses need to know

Steps to achieve AI implementation in your business

How businesses can measure AI success with KPIs

Applications of convolutional neural networks

Because processing and interpreting visual data is such a common task, CNNs have a wide range of real-world applications, from healthcare and automotive to social media and retail.

Some of the most common fields in which CNNs are used include the following:

  • Healthcare. In the healthcare sector, CNNs are used to assist in medical diagnostics and imaging. For example, a CNN could analyze medical images such as X-rays or pathology slides to detect anomalies indicative of disease, thereby aiding in diagnosis and treatment planning.
  • Automotive. The automotive industry uses CNNs in self-driving cars that navigate their environments by interpreting camera and sensor data. CNNs are also useful in AI-powered features of nonautonomous vehicles, such as automated cruise control and parking assistance.
  • Social media. On social media platforms, CNNs are employed in a range of image analysis tasks. For example, a social media company might use a CNN to suggest people to tag in photographs or to flag potentially offensive images for moderation.
  • Retail. E-commerce retailers use CNNs in visual search systems that let users search for products using images rather than text. Online retailers can also use CNNs to improve their recommender systems by identifying products that visually resemble those a shopper has shown interest in.
  • Virtual assistants. Although CNNs are most often used to work with image data, virtual assistants are a good example of applying CNNs to audio processing problems. CNNs can recognize spoken keywords and help interpret users' commands, enhancing a virtual assistant's ability to understand and respond to its user.

This was last updated in January 2024

Continue Reading About convolutional neural network (CNN)

  • CNN vs. GAN: How are they different?
  • How neural network training methods are modeled after the human brain
  • Transformer neural networks are shaking up AI
  • A basic design pattern for image recognition
  • Capitalizing on the many artificial neural network uses

Related Terms

What is machine learning bias (AI bias)?
Machine learning bias, also known as 'algorithm bias' or 'AI bias,' is a phenomenon that occurs when an algorithm produces ...Seecompletedefinition
What is machine learning operations (MLOps)?
Machine learning operations (MLOps) is the development and use of machine learning models by development operations (DevOps) ...Seecompletedefinition
What is singularity in technology and AI?
In technology, the singularity describes a hypothetical future where technology growth is out of control and irreversible.Seecompletedefinition

Dig Deeper on Machine learning platforms

  • CNN vs. RNN: How are they different?By: LevCraig
  • What are graph neural networks (GNNs)?By: AlexanderGillis
  • Artificial intelligence in healthcare: defining the most common terms
  • neural networkBy: KinzaYasar
What is a convolutional neural network (CNN)? (2024)
Top Articles
Pre-approval percentages explained | Aro
How To Fix The LG Dishwasher CL Code
Fiskars X27 Kloofbijl - 92 cm | bol
Menards Thermal Fuse
Coverage of the introduction of the Water (Special Measures) Bill
Guardians Of The Galaxy Showtimes Near Athol Cinemas 8
Mawal Gameroom Download
Xm Tennis Channel
World History Kazwire
Bestellung Ahrefs
Pittsburgh Ultra Advanced Stain And Sealant Color Chart
Swedestats
Swgoh Turn Meter Reduction Teams
Daylight Matt And Kim Lyrics
Exterior insulation details for a laminated timber gothic arch cabin - GreenBuildingAdvisor
Sulfur - Element information, properties and uses
Aerocareusa Hmebillpay Com
Football - 2024/2025 Women’s Super League: Preview, schedule and how to watch
Violent Night Showtimes Near Century 14 Vallejo
Magic Seaweed Daytona
Violent Night Showtimes Near Johnstown Movieplex
Angel Haynes Dropbox
Jazz Total Detox Reviews 2022
Kattis-Solutions
Att U Verse Outage Map
Human Unitec International Inc (HMNU) Stock Price History Chart & Technical Analysis Graph - TipRanks.com
Craigslist Ludington Michigan
The Pretty Kitty Tanglewood
Ippa 番号
Ukg Dimensions Urmc
Studio 22 Nashville Review
Dmitri Wartranslated
Spectrum Outage in Genoa City, Wisconsin
Trap Candy Strain Leafly
Taylor University Baseball Roster
Cookie Clicker The Advanced Method
My Locker Ausd
Entry of the Globbots - 20th Century Electro​-​Synthesis, Avant Garde & Experimental Music 02;31,​07 - Volume II, by Various
Lake Kingdom Moon 31
Postgraduate | Student Recruitment
Cnp Tx Venmo
Homeloanserv Account Login
Sand Castle Parents Guide
Tableaux, mobilier et objets d'art
American Bully Puppies for Sale | Lancaster Puppies
Craigslist Chautauqua Ny
Take Me To The Closest Ups
CPM Homework Help
Grandma's Portuguese Sweet Bread Recipe Made from Scratch
8663831604
Denys Davydov - Wikitia
Latest Posts
Article information

Author: Pres. Carey Rath

Last Updated:

Views: 6602

Rating: 4 / 5 (41 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Pres. Carey Rath

Birthday: 1997-03-06

Address: 14955 Ledner Trail, East Rodrickfort, NE 85127-8369

Phone: +18682428114917

Job: National Technology Representative

Hobby: Sand art, Drama, Web surfing, Cycling, Brazilian jiu-jitsu, Leather crafting, Creative writing

Introduction: My name is Pres. Carey Rath, I am a faithful, funny, vast, joyous, lively, brave, glamorous person who loves writing and wants to share my knowledge and understanding with you.