Consider the below command line, which defines kernel size as 5x5 and has seven output channels:
layer1 = Flux.Conv((5,5), 3 => 7, relu; bias = false)
Questions:
- Which kernel(s), given that there are seven output channels, are effectively used on the above example? Are they pre-built?
- How do I specify my own (5,5) kernel? How do I specify my own set of seven (5,5) kernels?
Thanks.