Skip to content

Commit

Permalink
fixes BVLC#3163
Browse files Browse the repository at this point in the history
  • Loading branch information
eerwitt committed Oct 7, 2015
1 parent 8ef3d63 commit e061546
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/tutorial/layers.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ In contrast, other layers (with few exceptions) ignore the spatial structure of
- `n * c_i * h_i * w_i`
* Output
- `n * c_o * h_o * w_o`, where `h_o = (h_i + 2 * pad_h - kernel_h) / stride_h + 1` and `w_o` likewise.
* Sample (as seen in `./examples/imagenet/imagenet_train_val.prototxt`)
* Sample (as seen in `./models/bvlc_reference_caffenet/train_val.prototxt`)

layer {
name: "conv1"
Expand Down Expand Up @@ -83,7 +83,7 @@ The `Convolution` layer convolves the input image with a set of learnable filter
- `n * c * h_i * w_i`
* Output
- `n * c * h_o * w_o`, where h_o and w_o are computed in the same way as convolution.
* Sample (as seen in `./examples/imagenet/imagenet_train_val.prototxt`)
* Sample (as seen in `./models/bvlc_reference_caffenet/train_val.prototxt`)

layer {
name: "pool1"
Expand Down Expand Up @@ -197,7 +197,7 @@ In general, activation / Neuron layers are element-wise operators, taking one bo
* Parameters (`ReLUParameter relu_param`)
- Optional
- `negative_slope` [default 0]: specifies whether to leak the negative part by multiplying it with the slope value rather than setting it to 0.
* Sample (as seen in `./examples/imagenet/imagenet_train_val.prototxt`)
* Sample (as seen in `./models/bvlc_reference_caffenet/train_val.prototxt`)

layer {
name: "relu1"
Expand Down

0 comments on commit e061546

Please sign in to comment.