Selecting number of strides and filters in CNN (Keras)

602 Views Asked by At

I am using keras to build a cnn model for signal classification. What is the best way in keras for hyper parameter tuning and selection for the number of strides,and number filters.

1

There are 1 best solutions below

0
On

Welcome to main question of deep learning. There is no valid, single solution which fits to all problems. There are some patterns though, like starting with few filters in early layers and increase filter count while reducing the sizes. For you, the best would be to start reading existing architectures like Inception, VGG, Resnet, etc. to understand why and how they implemented their network. Then, by following / inventing your own network, you can try for better results.