You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/lenet.txt
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -401,12 +401,12 @@ to be compatible with our previous MLP implementation.
401
401
402
402
403
403
.. note::
404
-
Please note that the convolution operation in majority of of the recent
405
-
models and almost all the library codes available is slightly different
406
-
than the original LeNet model. In modern conv2d, for each feature map
407
-
The result sums all the convolved input feature maps with the corresponding
408
-
kernel. As opposed to some of the earlier works that used to select only
409
-
some of the input feature maps.
404
+
Note that the term convolution could corresponds to different mathematical operations.
405
+
1. theano.tensor.nnet.conv2d which is the most common one in almost all of the recent published convolutional models. In this op for each output feature map, all the input feature maps are summed together after being convolved with the filter.
406
+
2. Original LeNet model: In this work for each output feature map, only subset of input feature maps were selected.
407
+
3. The convolution used in signal processing: theano.tensor.signal.conv.conv2d
0 commit comments