Reputation: 123
I am studying CNN. I don't get the idea behind the kernels. How can we find them? I do some code in Tensorflow and I wonder what is the kernel in Tensorflow?
Upvotes: 1
Views: 109
Reputation: 56357
Any CNN does not use a predefined convolutional kernel, these are learned during the training process from the data. This is a common misconception with people that come from a signal processing background, where convolutional kernels are predefined (like edge detection, gabor filters, etc).
Upvotes: 2