mirazour
mirazour

Reputation: 793

How are filters selected for convolutional neural networks

If I want to design a CNN, do I have to specify the filter type for each of the hidden layers?

Upvotes: 3

Views: 881

Answers (1)

AbdulRahman AlHamali
AbdulRahman AlHamali

Reputation: 1941

You don't specify a filter type in CNNs, you just specify number of kernels (filters), dimensions of the filters, initial weights, number of layers, etc. The network then creates the suitable filter by training and changing its weights

Upvotes: 2

Related Questions