PHT
PHT

Reputation: 123

What is the built-in kernel of CNN in tensorflow?

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

Answers (1)

Dr. Snoopy
Dr. Snoopy

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

Related Questions