Keras conv1d layer parameters: filters and kernel_size
You’re right to say that kernel_size defines the size of the sliding window. The filters parameters is just how many different windows you will have. (All of them with the same length, which is kernel_size). How many different results or channels you want to produce. When you use filters=100 and kernel_size=4, you are creating 100 … Read more