summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/Scale_001/test.prototxt
blob: d15be8ff3634606e5090573ca72ee63ed9ef6cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
layer {
  name: "data"
  type: "Input"
  top: "data"
  input_param { shape: { dim: 1 dim: 3 dim: 16 dim: 16 } }
}
layer {
  name: "scale"
  type: "Scale"
  bottom: "data"
  top: "scale"
  scale_param {
    filler { type: "gaussian" std: 0.01 }
    bias_term: true
    bias_filler { type: "gaussian" std: 0.01 }
  }
}