Skip to content

Commit

Permalink
Merge pull request #276 from sergiopaniego/missing_quotes
Browse files Browse the repository at this point in the history
Added missing quotes to sentence
  • Loading branch information
merveenoyan authored Apr 30, 2024
2 parents 2259cdc + 6c477c5 commit ff4311a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapters/en/unit2/cnns/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ In this unit, we will learn about Convolutional Neural Networks, an important st

## Convolution: Basic Ideas

Convolution is an operation used to extract features from data. The data can be 1D, 2D or 3D. We'll explain the operation with a solid example. All you need to know now is that the operation simply takes a matrix made of numbers, moves it through the data, and takes the sum of products between the data and that matrix. This matrix is called kernel or filter. You might say, "What does it have to do with the feature extraction, and how am I supposed to apply it?
Convolution is an operation used to extract features from data. The data can be 1D, 2D or 3D. We'll explain the operation with a solid example. All you need to know now is that the operation simply takes a matrix made of numbers, moves it through the data, and takes the sum of products between the data and that matrix. This matrix is called kernel or filter. You might say, "What does it have to do with the feature extraction, and how am I supposed to apply it?"
Don’t panic! We’re getting to it.

To illustrate the intuition, let's take a look at this example. We have this 1D data, and we visualize it. Visualization will help understand the effects of convolution operation.
Expand Down

0 comments on commit ff4311a

Please sign in to comment.