summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/residual_bn/test.prototxt
blob: eaa321e8d2b162c17640df984dd0f87653404a87 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: "residual_bn"
layer {
  name: "input"
  type: "Input"
  top: "data"
  input_param {
    shape {
      dim: 1
      dim: 3
      dim: 31
      dim: 31
    }
  }
}
layer {
  name: "MaxPool2dBackward4"
  type: "Pooling"
  bottom: "data"
  top: "MaxPool2dBackward4"
  pooling_param {
    pool: MAX
    kernel_size: 3
    stride: 2
    pad: 1
  }
}
layer {
  name: "ConvNdBackward5"
  type: "Convolution"
  bottom: "MaxPool2dBackward4"
  top: "ConvNdBackward5"
  convolution_param {
    num_output: 5
    pad_h: 1
    pad_w: 1
    kernel_h: 3
    kernel_w: 3
    stride: 1
    bias_term: false
  }
}
layer {
  name: "BatchNormBackward6_bn"
  type: "BatchNorm"
  bottom: "ConvNdBackward5"
  top: "BatchNormBackward6"
  batch_norm_param {
    use_global_stats: true
    eps: 1e-05
  }
}
layer {
  name: "BatchNormBackward6_scale"
  type: "Scale"
  bottom: "BatchNormBackward6"
  top: "BatchNormBackward6"
  scale_param {
    bias_term: true
  }
}
layer {
  name: "ThresholdBackward7"
  type: "ReLU"
  bottom: "BatchNormBackward6"
  top: "BatchNormBackward6"
}
layer {
  name: "ConvNdBackward8"
  type: "Convolution"
  bottom: "BatchNormBackward6"
  top: "ConvNdBackward8"
  convolution_param {
    num_output: 3
    pad_h: 1
    pad_w: 1
    kernel_h: 3
    kernel_w: 3
    stride: 1
    bias_term: false
  }
}
layer {
  name: "BatchNormBackward9_bn"
  type: "BatchNorm"
  bottom: "ConvNdBackward8"
  top: "BatchNormBackward9"
  batch_norm_param {
    use_global_stats: true
    eps: 1e-05
  }
}
layer {
  name: "BatchNormBackward9_scale"
  type: "Scale"
  bottom: "BatchNormBackward9"
  top: "BatchNormBackward9"
  scale_param {
    bias_term: true
  }
}
layer {
  name: "AddBackward11"
  type: "Eltwise"
  bottom: "BatchNormBackward9"
  bottom: "MaxPool2dBackward4"
  top: "AddBackward11"
  eltwise_param {
    operation: SUM
  }
}