Skip to content

Commit 4672a8e

Browse files
committed
Update CNN image with licensed version
1 parent e877de7 commit 4672a8e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed
124 KB
Loading

content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/env-setup-1.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,16 @@ You will train a lightweight CNN to classify images of the letters R, P, and S a
1515
### What is a Convolutional Neural Network (CNN)?
1616
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.
1717

18-
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.
18+
![CNN architecture](Typical_cnn.png)
19+
20+
Typical CNN architecture by Aphex34, licensed under
21+
[CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/).
1922

2023
Common CNN applications include:
2124

22-
- Image classification: identify the main object in an image, such as classifying a photo as a cat or dog
23-
- Object detection: locate specific objects in an image and draw bounding boxes
24-
- Facial recognition: identify or verify individuals based on facial features
25+
- Image classification: identifying the main object in an image, such as classifying a photo as a cat or dog
26+
- Object detection: locating specific objects in an image and draw bounding boxes
27+
- Facial recognition: identifying or verify individuals based on facial features
2528

2629
For the rock-paper-scissors game, you use a tiny CNN to classify the letters R, P, and S as the corresponding hand gestures.
2730

Binary file not shown.

0 commit comments

Comments
 (0)