Reputation: 793
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
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