-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clarify why there are 6 output channels #790
Comments
Right, I remember what I was taught in deeplearn.ai's video on coursera. that 6 output is not the bias. When we are doing on CNN, like VGG for example, we have to decrease the size of the image and increase the size of the channel to extract the feature. VGG model uses these all the time. I hope we have more technical people come here to explain more because I think I am not quite right. However, if you want to see that video, I can post the link of it. |
6 output channels are the numbers of filters or kernels which will be applied to the input image (of Height x Width x 1 dimensions), So We want out model to learn some different local relations between pixels (let's say in a region of 3x3) that are not obvious for us. So we want to increase the channels (filters/ kernels) and by applying 3x3 kernels, we decrease the Height and Width of further layers. That's what convolution layers do. Checkout these resources For Visualization |
Looks like a typo bug Patch is here #859 |
Addressed in recipe |
In the Define the network section of the Neural Network tutorial, clarify why is it 6 outputs? Is it bias?
The text was updated successfully, but these errors were encountered: