How do filters work in CNN?
Simply so, what is filter number in CNN?
The number of filters is the number of neurons, since each neuron performs a different convolution on the input to the layer (more precisely, the neurons' input weights form convolution kernels).
Also question is, what are convolutional filters?
A convolution is how the input is modified by a filter. In convolutional networks, multiple filters are taken to slice through the image and map them one by one and learn different portions of an input image. Each time a match is found, it is mapped out onto an output image.
Window size, as I know it, is the length of a (sliding) cutout of a time sequence of data. E.g., if you have data x(t) that you want to model, you could use a k-size window x(n), x(n+1), , x(n+k). This is a method commonly used in non-recursive approximators.