Skip to content

Commit a375cf4

Browse files
committed
Merge pull request lisa-lab#91 from memimo/lenet
Clarify difference between modern conv2d and original LeNet
2 parents 2053705 + b257f1d commit a375cf4

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+
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 which works only on single channel inputs.
408+
409+
410+
403411
Putting it All Together
404412
+++++++++++++++++++++++
405413

0 commit comments

Comments
 (0)