Skip to content

Commit 5a719b5

Browse files
committed
updated the text
1 parent 885e6d4 commit 5a719b5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/lenet.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -401,12 +401,12 @@ to be compatible with our previous MLP implementation.
401401

402402

403403
.. 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
408+
409+
410410

411411
Putting it All Together
412412
+++++++++++++++++++++++

0 commit comments

Comments
 (0)