summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/Convolution_003/test.prototxt
blob: 38c4ebdf950b2616549df4cd20fa6afbc710724e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
layer {
  name: "data"
  type: "Input"
  top: "data"
  input_param {
    shape: { dim: 1 dim: 3 dim: 16 dim: 16 }
  }
}
layer {
  name: "conv"
  type: "Convolution"
  bottom: "data"
  top: "conv"
  convolution_param {
    bias_term: false
    num_output: 2
    pad: 1
    pad: 2
    kernel_size: 3
    weight_filler {
      type: "gaussian"
      std: 0.01
    }
  }
}