summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/BatchNorm_000/test.prototxt
blob: 7c0f19ddf992a880a3c52c79515cb8270990ffce (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: 4 dim: 4 }
  }
}
layer {
  name: "batchnorm"
  type: "BatchNorm"
  bottom: "data"
  top: "batchnorm"
  batch_norm_param {
    use_global_stats: true
  }
}