Skip to content

Commit 885e6d4

Browse files
committed
Clarify difference between modern conv2d and original LeNet
1 parent b0dd8f0 commit 885e6d4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

doc/lenet.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,14 @@ tensors. These are then flattened to a 2D matrix of rasterized feature maps,
400400
to be compatible with our previous MLP implementation.
401401

402402

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.
410+
403411
Putting it All Together
404412
+++++++++++++++++++++++
405413

0 commit comments

Comments
 (0)