Closed SkyWxxk closed 6 months ago
Hello, the responsible for it here. In our implementation, you especify the ammount of convolutions that you want in a layer, so it applies each conv to each entering channel, resulting in a channels * convs output. Hope that this clarifies it. Regards, Alex
Firstly, thanks to authors' KAN-CNN works. But I was confused that the output channel number of the tensor was directly multiplied by the n_convs parameter, rather than the expected output channel number. Here is the demo:
The result shows here:
We can see that the channel was just multiplied by "n_convs". How can we get the desired output channel? Thanks!