2/23/2019 channels slides http://127.0.0.1:8000/channels.slides.html?print-pdf/#/ 1/6
Multiple Input and Output Channels Multiple Input and Output Channels
Multiple Input Channels
In [1]: import d2l from mxnet import nd def corr2d_multi_in(X, K): # First, traverse along the 0th dimension (channel dimension) of X and K. # Then, add them together by using * return nd.add_n(*[d2l.corr2d(x, k) for x, k in zip(X, K)])