Skip to content

Commit 103a3da

Browse files
committed
Merge pull request keras-team#559 from danielforsyth/docs
Add SciPy Link to Conv Layer Docs
2 parents b958978 + ec450f4 commit 103a3da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/sources/layers/convolutional.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Convolution operator for filtering windows of two-dimensional inputs.
5858
- __init__: name of initialization function for the weights of the layer (see: [initializations](../initializations.md)), or alternatively, Theano function to use for weights initialization. This parameter is only relevant if you don't pass a `weights` argument.
5959
- __activation__: name of activation function to use (see: [activations](../activations.md)), or alternatively, elementwise Theano function. If you don't specify anything, no activation is applied (ie. "linear" activation: a(x) = x).
6060
- __weights__: list of numpy arrays to set as initial weights.
61-
- __border_mode__: 'valid', 'full', or 'same'. See scipy.signal.convolve2d.
61+
- __border_mode__: 'valid', 'full', or 'same'. [See scipy.signal.convolve2d](http://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.convolve2d.html).
6262
- __subsample__: tuple of length 2. Factor by which to subsample output. Also called strides elsewhere.
6363
- __W_regularizer__: instance of [WeightRegularizer](../regularizers.md) (eg. L1 or L2 regularization), applied to the main weights matrix.
6464
- __b_regularizer__: instance of [WeightRegularizer](../regularizers.md), applied to the bias.

0 commit comments

Comments
 (0)