Wednesday, December 1, 2021

CNN Basics

 Good Read:

https://towardsdatascience.com/conv2d-to-finally-understand-what-happens-in-the-forward-pass-1bbaafb0b148

https://towardsdatascience.com/a-comprehensive-guide-to-convolutional-neural-networks-the-eli5-way-3bd2b1164a53

Stride:

Definition from https://deepai.org/machine-learning-glossary-and-terms/stride:

"Stride is a parameter of the neural network's filter that modifies the amount of movement over the image or video. For example, if a neural network's stride is set to 1, the filter will move one pixel, or unit,  at a time."

Dilation:

Dilation is the number of pixels to skip during convolution operation.


Embeddings

 https://towardsdatascience.com/neural-network-embeddings-explained-4d028e6f0526 https://machinelearningmastery.com/what-are-word-embeddings...