Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ashutoshsatapathy1990/7904dda5550c8b4e3b53b7b3f4cd5677 to your computer and use it in GitHub Desktop.
Save ashutoshsatapathy1990/7904dda5550c8b4e3b53b7b3f4cd5677 to your computer and use it in GitHub Desktop.
# Inception V3
name: "Inception V3"
layer {
name: "train-data"
type: "Data"
top: "data"
top: "label"
transform_param {
mirror: true
crop_size: 299
}
data_param {
batch_size: 32
}
include { stage: "train" }
}
layer {
name: "val-data"
type: "Data"
top: "data"
top: "label"
transform_param {
mirror: false
crop_size: 299
}
data_param {
batch_size: 16
}
include { stage: "val" }
}
layer {
name: "conv1_3x3_s2"
type: "Convolution"
bottom: "data"
top: "conv1_3x3_s2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 32
pad: 0
kernel_size: 3
stride: 2
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv1_3x3_s2_bn"
type: "BatchNorm"
bottom: "conv1_3x3_s2"
top: "conv1_3x3_s2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv1_3x3_relu"
type: "ReLU"
bottom: "conv1_3x3_s2_bn"
top: "conv1_3x3_s2_bn"
}
layer {
name: "conv2_3x3_s1"
type: "Convolution"
bottom: "conv1_3x3_s2_bn"
top: "conv2_3x3_s1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 32
pad: 0
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv2_3x3_s1_bn"
type: "BatchNorm"
bottom: "conv2_3x3_s1"
top: "conv2_3x3_s1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv2_3x3_relu"
type: "ReLU"
bottom: "conv2_3x3_s1_bn"
top: "conv2_3x3_s1_bn"
}
layer {
name: "conv3_3x3_s1"
type: "Convolution"
bottom: "conv2_3x3_s1_bn"
top: "conv3_3x3_s1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv3_3x3_s1_bn"
type: "BatchNorm"
bottom: "conv3_3x3_s1"
top: "conv3_3x3_s1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv3_3x3_relu"
type: "ReLU"
bottom: "conv3_3x3_s1_bn"
top: "conv3_3x3_s1_bn"
}
layer {
name: "pool1_3x3_s2"
type: "Pooling"
bottom: "conv3_3x3_s1_bn"
top: "pool1_3x3_s2"
pooling_param {
pool: MAX
kernel_size: 3
stride: 2
}
}
layer {
name: "conv4_3x3_reduce"
type: "Convolution"
bottom: "pool1_3x3_s2"
top: "conv4_3x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 80
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv4_3x3_reduce_bn"
type: "BatchNorm"
bottom: "conv4_3x3_reduce"
top: "conv4_3x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv4_3x3_reduce_scale"
type: "ReLU"
bottom: "conv4_3x3_reduce_bn"
top: "conv4_3x3_reduce_bn"
}
layer {
name: "conv4_3x3"
type: "Convolution"
bottom: "conv4_3x3_reduce_bn"
top: "conv4_3x3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv4_3x3_bn"
type: "BatchNorm"
bottom: "conv4_3x3"
top: "conv4_3x3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "conv4_relu_3x3"
type: "ReLU"
bottom: "conv4_3x3_bn"
top: "conv4_3x3_bn"
}
layer {
name: "pool2_3x3_s2"
type: "Pooling"
bottom: "conv4_3x3_bn"
top: "pool2_3x3_s2"
pooling_param {
pool: MAX
kernel_size: 3
stride: 2
}
}
layer {
name: "inception_a1_1x1"
type: "Convolution"
bottom: "pool2_3x3_s2"
top: "inception_a1_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_1x1_bn"
type: "BatchNorm"
bottom: "inception_a1_1x1"
top: "inception_a1_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_1x1_relu"
type: "ReLU"
bottom: "inception_a1_1x1_bn"
top: "inception_a1_1x1_bn"
}
layer {
name: "inception_a1_5x5_reduce"
type: "Convolution"
bottom: "pool2_3x3_s2"
top: "inception_a1_5x5_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 48
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_5x5_reduce_bn"
type: "BatchNorm"
bottom: "inception_a1_5x5_reduce"
top: "inception_a1_5x5_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_5x5_reduce_relu"
type: "ReLU"
bottom: "inception_a1_5x5_reduce_bn"
top: "inception_a1_5x5_reduce_bn"
}
layer {
name: "inception_a1_5x5"
type: "Convolution"
bottom: "inception_a1_5x5_reduce_bn"
top: "inception_a1_5x5"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 2
kernel_size: 5
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_5x5_bn"
type: "BatchNorm"
bottom: "inception_a1_5x5"
top: "inception_a1_5x5_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_5x5_relu"
type: "ReLU"
bottom: "inception_a1_5x5_bn"
top: "inception_a1_5x5_bn"
}
layer {
name: "inception_a1_3x3_reduce"
type: "Convolution"
bottom: "pool2_3x3_s2"
top: "inception_a1_3x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_3x3_reduce_bn"
type: "BatchNorm"
bottom: "inception_a1_3x3_reduce"
top: "inception_a1_3x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_3x3_reduce_relu"
type: "ReLU"
bottom: "inception_a1_3x3_reduce_bn"
top: "inception_a1_3x3_reduce_bn"
}
layer {
name: "inception_a1_3x3_1"
type: "Convolution"
bottom: "inception_a1_3x3_reduce_bn"
top: "inception_a1_3x3_1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_3x3_bn"
type: "BatchNorm"
bottom: "inception_a1_3x3_1"
top: "inception_a1_3x3_1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_3x3_relu"
type: "ReLU"
bottom: "inception_a1_3x3_1_bn"
top: "inception_a1_3x3_1_bn"
}
layer {
name: "inception_a1_3x3_2"
type: "Convolution"
bottom: "inception_a1_3x3_1_bn"
top: "inception_a1_3x3_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_3x3_2_bn"
type: "BatchNorm"
bottom: "inception_a1_3x3_2"
top: "inception_a1_3x3_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_3x3_2_relu"
type: "ReLU"
bottom: "inception_a1_3x3_2_bn"
top: "inception_a1_3x3_2_bn"
}
layer {
name: "inception_a1_pool"
type: "Pooling"
bottom: "pool2_3x3_s2"
top: "inception_a1_pool"
pooling_param {
pool: AVE
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_a1_pool_proj"
type: "Convolution"
bottom: "inception_a1_pool"
top: "inception_a1_pool_proj"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 32
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_pool_proj_bn"
type: "BatchNorm"
bottom: "inception_a1_pool_proj"
top: "inception_a1_pool_proj_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a1_pool_proj_relu"
type: "ReLU"
bottom: "inception_a1_pool_proj_bn"
top: "inception_a1_pool_proj_bn"
}
layer {
name: "inception_a1_output"
type: "Concat"
bottom: "inception_a1_1x1_bn"
bottom: "inception_a1_5x5_bn"
bottom: "inception_a1_3x3_2_bn"
bottom: "inception_a1_pool_proj_bn"
top: "inception_a1_output"
}
layer {
name: "inception_a2_1x1"
type: "Convolution"
bottom: "inception_a1_output"
top: "inception_a2_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_1x1_bn"
type: "BatchNorm"
bottom: "inception_a2_1x1"
top: "inception_a2_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_1x1_relu"
type: "ReLU"
bottom: "inception_a2_1x1_bn"
top: "inception_a2_1x1_bn"
}
layer {
name: "inception_a2_5x5_reduce"
type: "Convolution"
bottom: "inception_a1_output"
top: "inception_a2_5x5_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 48
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_5x5_reduce_bn"
type: "BatchNorm"
bottom: "inception_a2_5x5_reduce"
top: "inception_a2_5x5_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_5x5_reduce_relu"
type: "ReLU"
bottom: "inception_a2_5x5_reduce_bn"
top: "inception_a2_5x5_reduce_bn"
}
layer {
name: "inception_a2_5x5"
type: "Convolution"
bottom: "inception_a2_5x5_reduce_bn"
top: "inception_a2_5x5"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 2
kernel_size: 5
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_5x5_bn"
type: "BatchNorm"
bottom: "inception_a2_5x5"
top: "inception_a2_5x5_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_5x5_relu"
type: "ReLU"
bottom: "inception_a2_5x5_bn"
top: "inception_a2_5x5_bn"
}
layer {
name: "inception_a2_3x3_reduce"
type: "Convolution"
bottom: "inception_a1_output"
top: "inception_a2_3x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_3x3_reduce_bn"
type: "BatchNorm"
bottom: "inception_a2_3x3_reduce"
top: "inception_a2_3x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_3x3_reduce_relu"
type: "ReLU"
bottom: "inception_a2_3x3_reduce_bn"
top: "inception_a2_3x3_reduce_bn"
}
layer {
name: "inception_a2_3x3_1"
type: "Convolution"
bottom: "inception_a2_3x3_reduce_bn"
top: "inception_a2_3x3_1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_3x3_bn"
type: "BatchNorm"
bottom: "inception_a2_3x3_1"
top: "inception_a2_3x3_1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_3x3_relu"
type: "ReLU"
bottom: "inception_a2_3x3_1_bn"
top: "inception_a2_3x3_1_bn"
}
layer {
name: "inception_a2_3x3_2"
type: "Convolution"
bottom: "inception_a2_3x3_1_bn"
top: "inception_a2_3x3_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_3x3_2_bn"
type: "BatchNorm"
bottom: "inception_a2_3x3_2"
top: "inception_a2_3x3_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_3x3_2_relu"
type: "ReLU"
bottom: "inception_a2_3x3_2_bn"
top: "inception_a2_3x3_2_bn"
}
layer {
name: "inception_a2_pool"
type: "Pooling"
bottom: "inception_a1_output"
top: "inception_a2_pool"
pooling_param {
pool: AVE
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_a2_pool_proj"
type: "Convolution"
bottom: "inception_a2_pool"
top: "inception_a2_pool_proj"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_pool_proj_bn"
type: "BatchNorm"
bottom: "inception_a2_pool_proj"
top: "inception_a2_pool_proj_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a2_pool_proj_relu"
type: "ReLU"
bottom: "inception_a2_pool_proj_bn"
top: "inception_a2_pool_proj_bn"
}
layer {
name: "inception_a2_output"
type: "Concat"
bottom: "inception_a2_1x1_bn"
bottom: "inception_a2_5x5_bn"
bottom: "inception_a2_3x3_2_bn"
bottom: "inception_a2_pool_proj_bn"
top: "inception_a2_output"
}
layer {
name: "inception_a3_1x1"
type: "Convolution"
bottom: "inception_a2_output"
top: "inception_a3_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_1x1_bn"
type: "BatchNorm"
bottom: "inception_a3_1x1"
top: "inception_a3_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_1x1_relu"
type: "ReLU"
bottom: "inception_a3_1x1_bn"
top: "inception_a3_1x1_bn"
}
layer {
name: "inception_a3_5x5_reduce"
type: "Convolution"
bottom: "inception_a2_output"
top: "inception_a3_5x5_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 48
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_5x5_reduce_bn"
type: "BatchNorm"
bottom: "inception_a3_5x5_reduce"
top: "inception_a3_5x5_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_5x5_reduce_relu"
type: "ReLU"
bottom: "inception_a3_5x5_reduce_bn"
top: "inception_a3_5x5_reduce_bn"
}
layer {
name: "inception_a3_5x5"
type: "Convolution"
bottom: "inception_a3_5x5_reduce_bn"
top: "inception_a3_5x5"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 2
kernel_size: 5
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_5x5_bn"
type: "BatchNorm"
bottom: "inception_a3_5x5"
top: "inception_a3_5x5_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_5x5_relu"
type: "ReLU"
bottom: "inception_a3_5x5_bn"
top: "inception_a3_5x5_bn"
}
layer {
name: "inception_a3_3x3_reduce"
type: "Convolution"
bottom: "inception_a2_output"
top: "inception_a3_3x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_3x3_reduce_bn"
type: "BatchNorm"
bottom: "inception_a3_3x3_reduce"
top: "inception_a3_3x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_3x3_reduce_relu"
type: "ReLU"
bottom: "inception_a3_3x3_reduce_bn"
top: "inception_a3_3x3_reduce_bn"
}
layer {
name: "inception_a3_3x3_1"
type: "Convolution"
bottom: "inception_a3_3x3_reduce_bn"
top: "inception_a3_3x3_1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_3x3_bn"
type: "BatchNorm"
bottom: "inception_a3_3x3_1"
top: "inception_a3_3x3_1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_3x3_relu"
type: "ReLU"
bottom: "inception_a3_3x3_1_bn"
top: "inception_a3_3x3_1_bn"
}
layer {
name: "inception_a3_3x3_2"
type: "Convolution"
bottom: "inception_a3_3x3_1_bn"
top: "inception_a3_3x3_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_3x3_2_bn"
type: "BatchNorm"
bottom: "inception_a3_3x3_2"
top: "inception_a3_3x3_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_3x3_2_relu"
type: "ReLU"
bottom: "inception_a3_3x3_2_bn"
top: "inception_a3_3x3_2_bn"
}
layer {
name: "inception_a3_pool"
type: "Pooling"
bottom: "inception_a2_output"
top: "inception_a3_pool"
pooling_param {
pool: AVE
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_a3_pool_proj"
type: "Convolution"
bottom: "inception_a3_pool"
top: "inception_a3_pool_proj"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_pool_proj_bn"
type: "BatchNorm"
bottom: "inception_a3_pool_proj"
top: "inception_a3_pool_proj_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_a3_pool_proj_relu"
type: "ReLU"
bottom: "inception_a3_pool_proj_bn"
top: "inception_a3_pool_proj_bn"
}
layer {
name: "inception_a3_output"
type: "Concat"
bottom: "inception_a3_1x1_bn"
bottom: "inception_a3_5x5_bn"
bottom: "inception_a3_3x3_2_bn"
bottom: "inception_a3_pool_proj_bn"
top: "inception_a3_output"
}
layer {
name: "reduction_a_pool"
type: "Pooling"
bottom: "inception_a3_output"
top: "reduction_a_pool"
pooling_param {
pool: MAX
kernel_size: 3
stride: 2
}
}
layer {
name: "reduction_a_3x3"
type: "Convolution"
bottom: "inception_a3_output"
top: "reduction_a_3x3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
pad: 0
kernel_size: 3
stride: 2
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_a_3x3_bn"
type: "BatchNorm"
bottom: "reduction_a_3x3"
top: "reduction_a_3x3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_a_3x3_relu"
type: "ReLU"
bottom: "reduction_a_3x3_bn"
top: "reduction_a_3x3_bn"
}
layer {
name: "reduction_a_3x3_2_reduce"
type: "Convolution"
bottom: "inception_a3_output"
top: "reduction_a_3x3_2_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_a_3x3_2_reduce_bn"
type: "BatchNorm"
bottom: "reduction_a_3x3_2_reduce"
top: "reduction_a_3x3_2_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_a_3x3_2_reduce_relu"
type: "ReLU"
bottom: "reduction_a_3x3_2_reduce_bn"
top: "reduction_a_3x3_2_reduce_bn"
}
layer {
name: "reduction_a_3x3_2"
type: "Convolution"
bottom: "reduction_a_3x3_2_reduce_bn"
top: "reduction_a_3x3_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 96
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_a_3x3_2_bn"
type: "BatchNorm"
bottom: "reduction_a_3x3_2"
top: "reduction_a_3x3_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_a_3x3_2_relu"
type: "ReLU"
bottom: "reduction_a_3x3_2_bn"
top: "reduction_a_3x3_2_bn"
}
layer {
name: "reduction_a_3x3_3"
type: "Convolution"
bottom: "reduction_a_3x3_2_bn"
top: "reduction_a_3x3_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 96
pad: 0
kernel_size: 3
stride: 2
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_a_3x3_3_bn"
type: "BatchNorm"
bottom: "reduction_a_3x3_3"
top: "reduction_a_3x3_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_a_3x3_3_relu"
type: "ReLU"
bottom: "reduction_a_3x3_3_bn"
top: "reduction_a_3x3_3_bn"
}
layer {
name: "reduction_a_concat"
type: "Concat"
bottom: "reduction_a_pool"
bottom: "reduction_a_3x3_bn"
bottom: "reduction_a_3x3_3_bn"
top: "reduction_a_concat"
}
layer {
name: "inception_b1_pool_ave"
type: "Pooling"
bottom: "reduction_a_concat"
top: "inception_b1_pool_ave"
pooling_param {
pool: AVE
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_b1_1x1"
type: "Convolution"
bottom: "inception_b1_pool_ave"
top: "inception_b1_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x1_bn"
type: "BatchNorm"
bottom: "inception_b1_1x1"
top: "inception_b1_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x1_relu"
type: "ReLU"
bottom: "inception_b1_1x1_bn"
top: "inception_b1_1x1_bn"
}
layer {
name: "inception_b1_1x1_2"
type: "Convolution"
bottom: "reduction_a_concat"
top: "inception_b1_1x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x1_2_bn"
type: "BatchNorm"
bottom: "inception_b1_1x1_2"
top: "inception_b1_1x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x1_2_relu"
type: "ReLU"
bottom: "inception_b1_1x1_2_bn"
top: "inception_b1_1x1_2_bn"
}
layer {
name: "inception_b1_1x7_reduce"
type: "Convolution"
bottom: "reduction_a_concat"
top: "inception_b1_1x7_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 128
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x7_reduce_bn"
type: "BatchNorm"
bottom: "inception_b1_1x7_reduce"
top: "inception_b1_1x7_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x7_reduce_relu"
type: "ReLU"
bottom: "inception_b1_1x7_reduce_bn"
top: "inception_b1_1x7_reduce_bn"
}
layer {
name: "inception_b1_1x7"
type: "Convolution"
bottom: "inception_b1_1x7_reduce_bn"
top: "inception_b1_1x7"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 128
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b1_1x7_bn"
type: "BatchNorm"
bottom: "inception_b1_1x7"
top: "inception_b1_1x7_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x7_relu"
type: "ReLU"
bottom: "inception_b1_1x7_bn"
top: "inception_b1_1x7_bn"
}
layer {
name: "inception_b1_7x1"
type: "Convolution"
bottom: "inception_b1_1x7_bn"
top: "inception_b1_7x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b1_7x1_bn"
type: "BatchNorm"
bottom: "inception_b1_7x1"
top: "inception_b1_7x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_7x1_relu"
type: "ReLU"
bottom: "inception_b1_7x1_bn"
top: "inception_b1_7x1_bn"
}
layer {
name: "inception_b1_7x1_reduce"
type: "Convolution"
bottom: "reduction_a_concat"
top: "inception_b1_7x1_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 128
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_7x1_reduce_bn"
type: "BatchNorm"
bottom: "inception_b1_7x1_reduce"
top: "inception_b1_7x1_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_7x1_reduce_relu"
type: "ReLU"
bottom: "inception_b1_7x1_reduce_bn"
top: "inception_b1_7x1_reduce_bn"
}
layer {
name: "inception_b1_7x1_2"
type: "Convolution"
bottom: "inception_b1_7x1_reduce_bn"
top: "inception_b1_7x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 128
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b1_7x1_2_bn"
type: "BatchNorm"
bottom: "inception_b1_7x1_2"
top: "inception_b1_7x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_7x1_2_relu"
type: "ReLU"
bottom: "inception_b1_7x1_2_bn"
top: "inception_b1_7x1_2_bn"
}
layer {
name: "inception_b1_1x7_2"
type: "Convolution"
bottom: "inception_b1_7x1_2_bn"
top: "inception_b1_1x7_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 128
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b1_1x7_2_bn"
type: "BatchNorm"
bottom: "inception_b1_1x7_2"
top: "inception_b1_1x7_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x7_2_relu"
type: "ReLU"
bottom: "inception_b1_1x7_2_bn"
top: "inception_b1_1x7_2_bn"
}
layer {
name: "inception_b1_7x1_3"
type: "Convolution"
bottom: "inception_b1_1x7_2_bn"
top: "inception_b1_7x1_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 128
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b1_7x1_3_bn"
type: "BatchNorm"
bottom: "inception_b1_7x1_3"
top: "inception_b1_7x1_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_7x1_3_relu"
type: "ReLU"
bottom: "inception_b1_7x1_3_bn"
top: "inception_b1_7x1_3_bn"
}
layer {
name: "inception_b1_1x7_3"
type: "Convolution"
bottom: "inception_b1_7x1_3_bn"
top: "inception_b1_1x7_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b1_1x7_3_bn"
type: "BatchNorm"
bottom: "inception_b1_1x7_3"
top: "inception_b1_1x7_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b1_1x7_3_relu"
type: "ReLU"
bottom: "inception_b1_1x7_3_bn"
top: "inception_b1_1x7_3_bn"
}
layer {
name: "inception_b1_concat"
type: "Concat"
bottom: "inception_b1_1x1_2_bn"
bottom: "inception_b1_7x1_bn"
bottom: "inception_b1_1x7_3_bn"
bottom: "inception_b1_1x1_bn"
top: "inception_b1_concat"
}
layer {
name: "inception_b2_pool_ave"
type: "Pooling"
bottom: "inception_b1_concat"
top: "inception_b2_pool_ave"
pooling_param {
pool: AVE
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_b2_1x1"
type: "Convolution"
bottom: "inception_b2_pool_ave"
top: "inception_b2_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x1_bn"
type: "BatchNorm"
bottom: "inception_b2_1x1"
top: "inception_b2_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x1_relu"
type: "ReLU"
bottom: "inception_b2_1x1_bn"
top: "inception_b2_1x1_bn"
}
layer {
name: "inception_b2_1x1_2"
type: "Convolution"
bottom: "inception_b1_concat"
top: "inception_b2_1x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x1_2_bn"
type: "BatchNorm"
bottom: "inception_b2_1x1_2"
top: "inception_b2_1x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x1_2_relu"
type: "ReLU"
bottom: "inception_b2_1x1_2_bn"
top: "inception_b2_1x1_2_bn"
}
layer {
name: "inception_b2_1x7_reduce"
type: "Convolution"
bottom: "inception_b1_concat"
top: "inception_b2_1x7_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x7_reduce_bn"
type: "BatchNorm"
bottom: "inception_b2_1x7_reduce"
top: "inception_b2_1x7_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x7_reduce_relu"
type: "ReLU"
bottom: "inception_b2_1x7_reduce_bn"
top: "inception_b2_1x7_reduce_bn"
}
layer {
name: "inception_b2_1x7"
type: "Convolution"
bottom: "inception_b2_1x7_reduce_bn"
top: "inception_b2_1x7"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b2_1x7_bn"
type: "BatchNorm"
bottom: "inception_b2_1x7"
top: "inception_b2_1x7_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x7_relu"
type: "ReLU"
bottom: "inception_b2_1x7_bn"
top: "inception_b2_1x7_bn"
}
layer {
name: "inception_b2_7x1"
type: "Convolution"
bottom: "inception_b2_1x7_bn"
top: "inception_b2_7x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b2_7x1_bn"
type: "BatchNorm"
bottom: "inception_b2_7x1"
top: "inception_b2_7x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_7x1_relu"
type: "ReLU"
bottom: "inception_b2_7x1_bn"
top: "inception_b2_7x1_bn"
}
layer {
name: "inception_b2_7x1_reduce"
type: "Convolution"
bottom: "inception_b1_concat"
top: "inception_b2_7x1_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_7x1_reduce_bn"
type: "BatchNorm"
bottom: "inception_b2_7x1_reduce"
top: "inception_b2_7x1_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_7x1_reduce_relu"
type: "ReLU"
bottom: "inception_b2_7x1_reduce_bn"
top: "inception_b2_7x1_reduce_bn"
}
layer {
name: "inception_b2_7x1_2"
type: "Convolution"
bottom: "inception_b2_7x1_reduce_bn"
top: "inception_b2_7x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b2_7x1_2_bn"
type: "BatchNorm"
bottom: "inception_b2_7x1_2"
top: "inception_b2_7x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_7x1_2_relu"
type: "ReLU"
bottom: "inception_b2_7x1_2_bn"
top: "inception_b2_7x1_2_bn"
}
layer {
name: "inception_b2_1x7_2"
type: "Convolution"
bottom: "inception_b2_7x1_2_bn"
top: "inception_b2_1x7_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b2_1x7_2_bn"
type: "BatchNorm"
bottom: "inception_b2_1x7_2"
top: "inception_b2_1x7_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x7_2_relu"
type: "ReLU"
bottom: "inception_b2_1x7_2_bn"
top: "inception_b2_1x7_2_bn"
}
layer {
name: "inception_b2_7x1_3"
type: "Convolution"
bottom: "inception_b2_1x7_2_bn"
top: "inception_b2_7x1_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b2_7x1_3_bn"
type: "BatchNorm"
bottom: "inception_b2_7x1_3"
top: "inception_b2_7x1_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_7x1_3_relu"
type: "ReLU"
bottom: "inception_b2_7x1_3_bn"
top: "inception_b2_7x1_3_bn"
}
layer {
name: "inception_b2_1x7_3"
type: "Convolution"
bottom: "inception_b2_7x1_3_bn"
top: "inception_b2_1x7_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b2_1x7_3_bn"
type: "BatchNorm"
bottom: "inception_b2_1x7_3"
top: "inception_b2_1x7_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b2_1x7_3_relu"
type: "ReLU"
bottom: "inception_b2_1x7_3_bn"
top: "inception_b2_1x7_3_bn"
}
layer {
name: "inception_b2_concat"
type: "Concat"
bottom: "inception_b2_1x1_2_bn"
bottom: "inception_b2_7x1_bn"
bottom: "inception_b2_1x7_3_bn"
bottom: "inception_b2_1x1_bn"
top: "inception_b2_concat"
}
layer {
name: "inception_b3_pool_ave"
type: "Pooling"
bottom: "inception_b2_concat"
top: "inception_b3_pool_ave"
pooling_param {
pool: AVE
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_b3_1x1"
type: "Convolution"
bottom: "inception_b3_pool_ave"
top: "inception_b3_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x1_bn"
type: "BatchNorm"
bottom: "inception_b3_1x1"
top: "inception_b3_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x1_relu"
type: "ReLU"
bottom: "inception_b3_1x1_bn"
top: "inception_b3_1x1_bn"
}
layer {
name: "inception_b3_1x1_2"
type: "Convolution"
bottom: "inception_b2_concat"
top: "inception_b3_1x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x1_2_bn"
type: "BatchNorm"
bottom: "inception_b3_1x1_2"
top: "inception_b3_1x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x1_2_relu"
type: "ReLU"
bottom: "inception_b3_1x1_2_bn"
top: "inception_b3_1x1_2_bn"
}
layer {
name: "inception_b3_1x7_reduce"
type: "Convolution"
bottom: "inception_b2_concat"
top: "inception_b3_1x7_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x7_reduce_bn"
type: "BatchNorm"
bottom: "inception_b3_1x7_reduce"
top: "inception_b3_1x7_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x7_reduce_relu"
type: "ReLU"
bottom: "inception_b3_1x7_reduce_bn"
top: "inception_b3_1x7_reduce_bn"
}
layer {
name: "inception_b3_1x7"
type: "Convolution"
bottom: "inception_b3_1x7_reduce_bn"
top: "inception_b3_1x7"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b3_1x7_bn"
type: "BatchNorm"
bottom: "inception_b3_1x7"
top: "inception_b3_1x7_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x7_relu"
type: "ReLU"
bottom: "inception_b3_1x7_bn"
top: "inception_b3_1x7_bn"
}
layer {
name: "inception_b3_7x1"
type: "Convolution"
bottom: "inception_b3_1x7_bn"
top: "inception_b3_7x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b3_7x1_bn"
type: "BatchNorm"
bottom: "inception_b3_7x1"
top: "inception_b3_7x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_7x1_relu"
type: "ReLU"
bottom: "inception_b3_7x1_bn"
top: "inception_b3_7x1_bn"
}
layer {
name: "inception_b3_7x1_reduce"
type: "Convolution"
bottom: "inception_b2_concat"
top: "inception_b3_7x1_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_7x1_reduce_bn"
type: "BatchNorm"
bottom: "inception_b3_7x1_reduce"
top: "inception_b3_7x1_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_7x1_reduce_relu"
type: "ReLU"
bottom: "inception_b3_7x1_reduce_bn"
top: "inception_b3_7x1_reduce_bn"
}
layer {
name: "inception_b3_7x1_2"
type: "Convolution"
bottom: "inception_b3_7x1_reduce_bn"
top: "inception_b3_7x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b3_7x1_2_bn"
type: "BatchNorm"
bottom: "inception_b3_7x1_2"
top: "inception_b3_7x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_7x1_2_relu"
type: "ReLU"
bottom: "inception_b3_7x1_2_bn"
top: "inception_b3_7x1_2_bn"
}
layer {
name: "inception_b3_1x7_2"
type: "Convolution"
bottom: "inception_b3_7x1_2_bn"
top: "inception_b3_1x7_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b3_1x7_2_bn"
type: "BatchNorm"
bottom: "inception_b3_1x7_2"
top: "inception_b3_1x7_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x7_2_relu"
type: "ReLU"
bottom: "inception_b3_1x7_2_bn"
top: "inception_b3_1x7_2_bn"
}
layer {
name: "inception_b3_7x1_3"
type: "Convolution"
bottom: "inception_b3_1x7_2_bn"
top: "inception_b3_7x1_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 160
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b3_7x1_3_bn"
type: "BatchNorm"
bottom: "inception_b3_7x1_3"
top: "inception_b3_7x1_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_7x1_3_relu"
type: "ReLU"
bottom: "inception_b3_7x1_3_bn"
top: "inception_b3_7x1_3_bn"
}
layer {
name: "inception_b3_1x7_3"
type: "Convolution"
bottom: "inception_b3_7x1_3_bn"
top: "inception_b3_1x7_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b3_1x7_3_bn"
type: "BatchNorm"
bottom: "inception_b3_1x7_3"
top: "inception_b3_1x7_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b3_1x7_3_relu"
type: "ReLU"
bottom: "inception_b3_1x7_3_bn"
top: "inception_b3_1x7_3_bn"
}
layer {
name: "inception_b3_concat"
type: "Concat"
bottom: "inception_b3_1x1_2_bn"
bottom: "inception_b3_7x1_bn"
bottom: "inception_b3_1x7_3_bn"
bottom: "inception_b3_1x1_bn"
top: "inception_b3_concat"
}
layer {
name: "inception_b4_pool_ave"
type: "Pooling"
bottom: "inception_b3_concat"
top: "inception_b4_pool_ave"
pooling_param {
pool: AVE
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_b4_1x1"
type: "Convolution"
bottom: "inception_b4_pool_ave"
top: "inception_b4_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x1_bn"
type: "BatchNorm"
bottom: "inception_b4_1x1"
top: "inception_b4_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x1_relu"
type: "ReLU"
bottom: "inception_b4_1x1_bn"
top: "inception_b4_1x1_bn"
}
layer {
name: "inception_b4_1x1_2"
type: "Convolution"
bottom: "inception_b3_concat"
top: "inception_b4_1x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x1_2_bn"
type: "BatchNorm"
bottom: "inception_b4_1x1_2"
top: "inception_b4_1x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x1_2_relu"
type: "ReLU"
bottom: "inception_b4_1x1_2_bn"
top: "inception_b4_1x1_2_bn"
}
layer {
name: "inception_b4_1x7_reduce"
type: "Convolution"
bottom: "inception_b3_concat"
top: "inception_b4_1x7_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x7_reduce_bn"
type: "BatchNorm"
bottom: "inception_b4_1x7_reduce"
top: "inception_b4_1x7_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x7_reduce_relu"
type: "ReLU"
bottom: "inception_b4_1x7_reduce_bn"
top: "inception_b4_1x7_reduce_bn"
}
layer {
name: "inception_b4_1x7"
type: "Convolution"
bottom: "inception_b4_1x7_reduce_bn"
top: "inception_b4_1x7"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b4_1x7_bn"
type: "BatchNorm"
bottom: "inception_b4_1x7"
top: "inception_b4_1x7_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x7_relu"
type: "ReLU"
bottom: "inception_b4_1x7_bn"
top: "inception_b4_1x7_bn"
}
layer {
name: "inception_b4_7x1"
type: "Convolution"
bottom: "inception_b4_1x7_bn"
top: "inception_b4_7x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b4_7x1_bn"
type: "BatchNorm"
bottom: "inception_b4_7x1"
top: "inception_b4_7x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_7x1_relu"
type: "ReLU"
bottom: "inception_b4_7x1_bn"
top: "inception_b4_7x1_bn"
}
layer {
name: "inception_b4_7x1_reduce"
type: "Convolution"
bottom: "inception_b3_concat"
top: "inception_b4_7x1_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_7x1_reduce_bn"
type: "BatchNorm"
bottom: "inception_b4_7x1_reduce"
top: "inception_b4_7x1_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_7x1_reduce_relu"
type: "ReLU"
bottom: "inception_b4_7x1_reduce_bn"
top: "inception_b4_7x1_reduce_bn"
}
layer {
name: "inception_b4_7x1_2"
type: "Convolution"
bottom: "inception_b4_7x1_reduce_bn"
top: "inception_b4_7x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b4_7x1_2_bn"
type: "BatchNorm"
bottom: "inception_b4_7x1_2"
top: "inception_b4_7x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_7x1_2_relu"
type: "ReLU"
bottom: "inception_b4_7x1_2_bn"
top: "inception_b4_7x1_2_bn"
}
layer {
name: "inception_b4_1x7_2"
type: "Convolution"
bottom: "inception_b4_7x1_2_bn"
top: "inception_b4_1x7_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b4_1x7_2_bn"
type: "BatchNorm"
bottom: "inception_b4_1x7_2"
top: "inception_b4_1x7_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x7_2_relu"
type: "ReLU"
bottom: "inception_b4_1x7_2_bn"
top: "inception_b4_1x7_2_bn"
}
layer {
name: "inception_b4_7x1_3"
type: "Convolution"
bottom: "inception_b4_1x7_2_bn"
top: "inception_b4_7x1_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "inception_b4_7x1_3_bn"
type: "BatchNorm"
bottom: "inception_b4_7x1_3"
top: "inception_b4_7x1_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_7x1_3_relu"
type: "ReLU"
bottom: "inception_b4_7x1_3_bn"
top: "inception_b4_7x1_3_bn"
}
layer {
name: "inception_b4_1x7_3"
type: "Convolution"
bottom: "inception_b4_7x1_3_bn"
top: "inception_b4_1x7_3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "inception_b4_1x7_3_bn"
type: "BatchNorm"
bottom: "inception_b4_1x7_3"
top: "inception_b4_1x7_3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_b4_1x7_3_relu"
type: "ReLU"
bottom: "inception_b4_1x7_3_bn"
top: "inception_b4_1x7_3_bn"
}
layer {
name: "inception_b4_concat"
type: "Concat"
bottom: "inception_b4_1x1_2_bn"
bottom: "inception_b4_7x1_bn"
bottom: "inception_b4_1x7_3_bn"
bottom: "inception_b4_1x1_bn"
top: "inception_b4_concat"
}
layer {
name: "auxiliary_loss_ave_pool"
type: "Pooling"
bottom: "inception_b4_concat"
top: "auxiliary_loss_ave_pool"
pooling_param {
pool: AVE
kernel_size: 5
stride: 3
}
}
layer {
name: "auxiliary_loss_conv"
type: "Convolution"
bottom: "auxiliary_loss_ave_pool"
top: "auxiliary_loss_conv"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 128
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "auxiliary_loss_conv_bn"
type: "BatchNorm"
bottom: "auxiliary_loss_conv"
top: "auxiliary_loss_conv_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "auxiliary_loss_relu_conv"
type: "ReLU"
bottom: "auxiliary_loss_conv_bn"
top: "auxiliary_loss_conv_bn"
}
layer {
name: "auxiliary_loss_conv2"
type: "Convolution"
bottom: "auxiliary_loss_conv_bn"
top: "auxiliary_loss_conv2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 768
pad: 0
kernel_size: 5
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "auxiliary_loss_conv2_bn"
type: "BatchNorm"
bottom: "auxiliary_loss_conv2"
top: "auxiliary_loss_conv2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "auxiliary_loss_relu_conv2"
type: "ReLU"
bottom: "auxiliary_loss_conv2_bn"
top: "auxiliary_loss_conv2_bn"
}
layer {
name: "auxiliary_loss_fc"
type: "InnerProduct"
bottom: "auxiliary_loss_conv2_bn"
top: "auxiliary_loss_fc"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
inner_product_param {
weight_filler {
type: "msra"
}
bias_filler {
type: "constant"
value: 0
}
}
exclude { stage: "deploy" }
}
layer {
name: "loss1/loss"
type: "SoftmaxWithLoss"
bottom: "auxiliary_loss_fc"
bottom: "label"
top: "loss1/loss"
loss_weight: 0.3
exclude { stage: "deploy" }
}
layer {
name: "loss1/top-1"
type: "Accuracy"
bottom: "auxiliary_loss_fc"
bottom: "label"
top: "loss1/accuracy"
include { stage: "val" }
}
layer {
name: "loss1/top-5"
type: "Accuracy"
bottom: "auxiliary_loss_fc"
bottom: "label"
top: "loss1/accuracy-top5"
include { stage: "val" }
accuracy_param {
top_k: 5
}
}
layer {
name: "reduction_b_pool"
type: "Pooling"
bottom: "inception_b4_concat"
top: "reduction_b_pool"
pooling_param {
pool: MAX
kernel_size: 3
stride: 2
}
}
layer {
name: "reduction_b_3x3_reduce"
type: "Convolution"
bottom: "inception_b4_concat"
top: "reduction_b_3x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_3x3_reduce_bn"
type: "BatchNorm"
bottom: "reduction_b_3x3_reduce"
top: "reduction_b_3x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_3x3_reduce_relu"
type: "ReLU"
bottom: "reduction_b_3x3_reduce_bn"
top: "reduction_b_3x3_reduce_bn"
}
layer {
name: "reduction_b_3x3"
type: "Convolution"
bottom: "reduction_b_3x3_reduce_bn"
top: "reduction_b_3x3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 320
pad: 0
kernel_size: 3
stride: 2
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_3x3_bn"
type: "BatchNorm"
bottom: "reduction_b_3x3"
top: "reduction_b_3x3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_3x3_relu"
type: "ReLU"
bottom: "reduction_b_3x3_bn"
top: "reduction_b_3x3_bn"
}
layer {
name: "reduction_b_1x7_reduce"
type: "Convolution"
bottom: "inception_b4_concat"
top: "reduction_b_1x7_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_1x7_reduce_bn"
type: "BatchNorm"
bottom: "reduction_b_1x7_reduce"
top: "reduction_b_1x7_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_1x7_reduce_relu"
type: "ReLU"
bottom: "reduction_b_1x7_reduce_bn"
top: "reduction_b_1x7_reduce_bn"
}
layer {
name: "reduction_b_1x7"
type: "Convolution"
bottom: "reduction_b_1x7_reduce_bn"
top: "reduction_b_1x7"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 3
kernel_h: 1
kernel_w: 7
}
}
layer {
name: "reduction_b_1x7_bn"
type: "BatchNorm"
bottom: "reduction_b_1x7"
top: "reduction_b_1x7_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_1x7_relu"
type: "ReLU"
bottom: "reduction_b_1x7_bn"
top: "reduction_b_1x7_bn"
}
layer {
name: "reduction_b_7x1"
type: "Convolution"
bottom: "reduction_b_1x7_bn"
top: "reduction_b_7x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
layer {
name: "reduction_b_7x1_bn"
type: "BatchNorm"
bottom: "reduction_b_7x1"
top: "reduction_b_7x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_7x1_relu"
type: "ReLU"
bottom: "reduction_b_7x1_bn"
top: "reduction_b_7x1_bn"
}
layer {
name: "reduction_b_3x3_2"
type: "Convolution"
bottom: "reduction_b_7x1_bn"
top: "reduction_b_3x3_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 3
stride: 2
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_3x3_2_bn"
type: "BatchNorm"
bottom: "reduction_b_3x3_2"
top: "reduction_b_3x3_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "reduction_b_3x3_2_relu"
type: "ReLU"
bottom: "reduction_b_3x3_2_bn"
top: "reduction_b_3x3_2_bn"
}
layer {
name: "reduction_b_concat"
type: "Concat"
bottom: "reduction_b_pool"
bottom: "reduction_b_3x3_bn"
bottom: "reduction_b_3x3_2_bn"
top: "reduction_b_concat"
}
layer {
name: "inception_c1_pool"
type: "Pooling"
bottom: "reduction_b_concat"
top: "inception_c1_pool"
pooling_param {
pool: AVE
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_c1_1x1"
type: "Convolution"
bottom: "inception_c1_pool"
top: "inception_c1_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_1x1_bn"
type: "BatchNorm"
bottom: "inception_c1_1x1"
top: "inception_c1_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_1x1_relu"
type: "ReLU"
bottom: "inception_c1_1x1_bn"
top: "inception_c1_1x1_bn"
}
layer {
name: "inception_c1_1x1_2"
type: "Convolution"
bottom: "reduction_b_concat"
top: "inception_c1_1x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 320
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_1x1_2_bn"
type: "BatchNorm"
bottom: "inception_c1_1x1_2"
top: "inception_c1_1x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_1x1_2_relu"
type: "ReLU"
bottom: "inception_c1_1x1_2_bn"
top: "inception_c1_1x1_2_bn"
}
layer {
name: "inception_c1_1x3_reduce"
type: "Convolution"
bottom: "reduction_b_concat"
top: "inception_c1_1x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_1x3_reduce_bn"
type: "BatchNorm"
bottom: "inception_c1_1x3_reduce"
top: "inception_c1_1x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_1x3_reduce_relu"
type: "ReLU"
bottom: "inception_c1_1x3_reduce_bn"
top: "inception_c1_1x3_reduce_bn"
}
layer {
name: "inception_c1_1x3"
type: "Convolution"
bottom: "inception_c1_1x3_reduce_bn"
top: "inception_c1_1x3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 1
kernel_h: 1
kernel_w: 3
}
}
layer {
name: "inception_c1_1x3_bn"
type: "BatchNorm"
bottom: "inception_c1_1x3"
top: "inception_c1_1x3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_1x3_relu"
type: "ReLU"
bottom: "inception_c1_1x3_bn"
top: "inception_c1_1x3_bn"
}
layer {
name: "inception_c1_3x1"
type: "Convolution"
bottom: "inception_c1_1x3_reduce_bn"
top: "inception_c1_3x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 1
pad_w: 0
kernel_h: 3
kernel_w: 1
}
}
layer {
name: "inception_c1_3x1_bn"
type: "BatchNorm"
bottom: "inception_c1_3x1"
top: "inception_c1_3x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_3x1_relu"
type: "ReLU"
bottom: "inception_c1_3x1_bn"
top: "inception_c1_3x1_bn"
}
layer {
name: "inception_c1_3x3_reduce"
type: "Convolution"
bottom: "reduction_b_concat"
top: "inception_c1_3x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 448
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_3x3_reduce_bn"
type: "BatchNorm"
bottom: "inception_c1_3x3_reduce"
top: "inception_c1_3x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_3x3_reduce_relu"
type: "ReLU"
bottom: "inception_c1_3x3_reduce_bn"
top: "inception_c1_3x3_reduce_bn"
}
layer {
name: "inception_c1_3x3"
type: "Convolution"
bottom: "inception_c1_3x3_reduce_bn"
top: "inception_c1_3x3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_3x3_bn"
type: "BatchNorm"
bottom: "inception_c1_3x3"
top: "inception_c1_3x3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_3x3_relu"
type: "ReLU"
bottom: "inception_c1_3x3_bn"
top: "inception_c1_3x3_bn"
}
layer {
name: "inception_c1_1x3_2"
type: "Convolution"
bottom: "inception_c1_3x3_bn"
top: "inception_c1_1x3_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 1
kernel_h: 1
kernel_w: 3
}
}
layer {
name: "inception_c1_1x3_2_bn"
type: "BatchNorm"
bottom: "inception_c1_1x3_2"
top: "inception_c1_1x3_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_1x3_2_relu"
type: "ReLU"
bottom: "inception_c1_1x3_2_bn"
top: "inception_c1_1x3_2_bn"
}
layer {
name: "inception_c1_3x1_2"
type: "Convolution"
bottom: "inception_c1_3x3_bn"
top: "inception_c1_3x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 1
pad_w: 0
kernel_h: 3
kernel_w: 1
}
}
layer {
name: "inception_c1_3x1_2_bn"
type: "BatchNorm"
bottom: "inception_c1_3x1_2"
top: "inception_c1_3x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c1_3x1_2_relu"
type: "ReLU"
bottom: "inception_c1_3x1_2_bn"
top: "inception_c1_3x1_2_bn"
}
layer {
name: "inception_c1_concat"
type: "Concat"
bottom: "inception_c1_1x1_2_bn"
bottom: "inception_c1_1x3_bn"
bottom: "inception_c1_3x1_bn"
bottom: "inception_c1_1x3_2_bn"
bottom: "inception_c1_3x1_2_bn"
bottom: "inception_c1_1x1_bn"
top: "inception_c1_concat"
}
layer {
name: "inception_c2_pool"
type: "Pooling"
bottom: "inception_c1_concat"
top: "inception_c2_pool"
pooling_param {
pool: MAX
kernel_size: 3
stride: 1
pad: 1
}
}
layer {
name: "inception_c2_1x1"
type: "Convolution"
bottom: "inception_c2_pool"
top: "inception_c2_1x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 192
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_1x1_bn"
type: "BatchNorm"
bottom: "inception_c2_1x1"
top: "inception_c2_1x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_1x1_relu"
type: "ReLU"
bottom: "inception_c2_1x1_bn"
top: "inception_c2_1x1_bn"
}
layer {
name: "inception_c2_1x1_2"
type: "Convolution"
bottom: "inception_c1_concat"
top: "inception_c2_1x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 320
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_1x1_2_bn"
type: "BatchNorm"
bottom: "inception_c2_1x1_2"
top: "inception_c2_1x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_1x1_2_relu"
type: "ReLU"
bottom: "inception_c2_1x1_2_bn"
top: "inception_c2_1x1_2_bn"
}
layer {
name: "inception_c2_1x3_reduce"
type: "Convolution"
bottom: "inception_c1_concat"
top: "inception_c2_1x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_1x3_reduce_bn"
type: "BatchNorm"
bottom: "inception_c2_1x3_reduce"
top: "inception_c2_1x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_1x3_reduce_relu"
type: "ReLU"
bottom: "inception_c2_1x3_reduce_bn"
top: "inception_c2_1x3_reduce_bn"
}
layer {
name: "inception_c2_1x3"
type: "Convolution"
bottom: "inception_c2_1x3_reduce_bn"
top: "inception_c2_1x3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 1
kernel_h: 1
kernel_w: 3
}
}
layer {
name: "inception_c2_1x3_bn"
type: "BatchNorm"
bottom: "inception_c2_1x3"
top: "inception_c2_1x3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_1x3_relu"
type: "ReLU"
bottom: "inception_c2_1x3_bn"
top: "inception_c2_1x3_bn"
}
layer {
name: "inception_c2_3x1"
type: "Convolution"
bottom: "inception_c2_1x3_reduce_bn"
top: "inception_c2_3x1"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 1
pad_w: 0
kernel_h: 3
kernel_w: 1
}
}
layer {
name: "inception_c2_3x1_bn"
type: "BatchNorm"
bottom: "inception_c2_3x1"
top: "inception_c2_3x1_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_3x1_relu"
type: "ReLU"
bottom: "inception_c2_3x1_bn"
top: "inception_c2_3x1_bn"
}
layer {
name: "inception_c2_3x3_reduce"
type: "Convolution"
bottom: "inception_c1_concat"
top: "inception_c2_3x3_reduce"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 448
pad: 0
kernel_size: 1
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_3x3_reduce_bn"
type: "BatchNorm"
bottom: "inception_c2_3x3_reduce"
top: "inception_c2_3x3_reduce_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_3x3_reduce_relu"
type: "ReLU"
bottom: "inception_c2_3x3_reduce_bn"
top: "inception_c2_3x3_reduce_bn"
}
layer {
name: "inception_c2_3x3"
type: "Convolution"
bottom: "inception_c2_3x3_reduce_bn"
top: "inception_c2_3x3"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
pad: 1
kernel_size: 3
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_3x3_bn"
type: "BatchNorm"
bottom: "inception_c2_3x3"
top: "inception_c2_3x3_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_3x3_relu"
type: "ReLU"
bottom: "inception_c2_3x3_bn"
top: "inception_c2_3x3_bn"
}
layer {
name: "inception_c2_1x3_2"
type: "Convolution"
bottom: "inception_c2_3x3_bn"
top: "inception_c2_1x3_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 0
pad_w: 1
kernel_h: 1
kernel_w: 3
}
}
layer {
name: "inception_c2_1x3_2_bn"
type: "BatchNorm"
bottom: "inception_c2_1x3_2"
top: "inception_c2_1x3_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_1x3_2_relu"
type: "ReLU"
bottom: "inception_c2_1x3_2_bn"
top: "inception_c2_1x3_2_bn"
}
layer {
name: "inception_c2_3x1_2"
type: "Convolution"
bottom: "inception_c2_3x3_bn"
top: "inception_c2_3x1_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 384
stride: 1
weight_filler {
type: "msra"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
pad_h: 1
pad_w: 0
kernel_h: 3
kernel_w: 1
}
}
layer {
name: "inception_c2_3x1_2_bn"
type: "BatchNorm"
bottom: "inception_c2_3x1_2"
top: "inception_c2_3x1_2_bn"
param {
lr_mult: 1
decay_mult: 0
}
param {
lr_mult: 1
decay_mult: 0
}
batch_norm_param {
scale_filler {
type: "constant"
value: 1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "inception_c2_3x1_2_relu"
type: "ReLU"
bottom: "inception_c2_3x1_2_bn"
top: "inception_c2_3x1_2_bn"
}
layer {
name: "inception_c2_concat"
type: "Concat"
bottom: "inception_c2_1x1_2_bn"
bottom: "inception_c2_1x3_bn"
bottom: "inception_c2_3x1_bn"
bottom: "inception_c2_1x3_2_bn"
bottom: "inception_c2_3x1_2_bn"
bottom: "inception_c2_1x1_bn"
top: "inception_c2_concat"
}
layer {
name: "pool_8x8_s1"
type: "Pooling"
bottom: "inception_c2_concat"
top: "pool_8x8_s1"
pooling_param {
pool: AVE
kernel_size: 8
}
}
layer {
name: "pool_8x8_s1_drop"
type: "Dropout"
bottom: "pool_8x8_s1"
top: "pool_8x8_s1_drop"
dropout_param {
dropout_ratio: 0.00000000298
}
}
layer {
name: "loss2/classifier"
type: "InnerProduct"
bottom: "pool_8x8_s1_drop"
top: "loss2/classifier"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
inner_product_param {
weight_filler {
type: "msra"
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "loss2/loss"
type: "SoftmaxWithLoss"
bottom: "loss2/classifier"
bottom: "label"
top: "loss"
loss_weight: 1
exclude { stage: "deploy" }
}
layer {
name: "loss2/top-1"
type: "Accuracy"
bottom: "loss2/classifier"
bottom: "label"
top: "accuracy"
include { stage: "val" }
}
layer {
name: "loss2/top-5"
type: "Accuracy"
bottom: "loss2/classifier"
bottom: "label"
top: "accuracy-top5"
include { stage: "val" }
accuracy_param {
top_k: 5
}
}
layer {
name: "softmax"
type: "Softmax"
bottom: "loss2/classifier"
top: "softmax"
include { stage: "deploy" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment