I get a question as follows:
Suppose you have a 10x10x3 colour image input and you want to stack two convolutional layers with kernel size 3x3 with 10 and 20 filters respectively. How many parameters do you have to train for these two layers?
And I know how to solve a one convolutional layer situation that the number of parameters should be (filter.shape[0]*filter.shape[1]*...*filter.shape[n] + bias) * number of filters.
But I am not sure about how to calculate the number of parameters in multi-layers situations.
Could anyone help me?
Thanks in advance.