diff --git a/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/env-setup-1.md b/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/env-setup-1.md index 1fde02ba2f..72750ad6a0 100644 --- a/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/env-setup-1.md +++ b/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/env-setup-1.md @@ -15,7 +15,10 @@ You will train a lightweight CNN to classify images of the letters R, P, and S a ### What is a Convolutional Neural Network (CNN)? A Convolutional Neural Network (CNN) is a type of deep neural network primarily used for analyzing visual imagery. Unlike traditional neural networks, CNNs are designed to process pixel data by using a mathematical operation called convolution. This allows them to automatically and adaptively learn spatial hierarchies of features from input images, from low-level features like edges and textures to high-level features like shapes and objects. -A convolutional neural network (CNN) is a deep neural network designed to analyze visual data using the *convolution* operation. CNNs learn spatial hierarchies of features - from edges and textures to shapes and objects - directly from pixels. +![CNN architecture](typical_cnn.png) + +Typical CNN architecture by Aphex34, licensed under +[CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/). Common CNN applications include: diff --git a/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/image.png b/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/image.png deleted file mode 100644 index b548f79463..0000000000 Binary files a/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/image.png and /dev/null differ diff --git a/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/typical_cnn.png b/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/typical_cnn.png new file mode 100644 index 0000000000..b856034f0b Binary files /dev/null and b/content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/typical_cnn.png differ