name: "YOLONet" input: "data" input_shape { dim: 1 dim: 3 dim: 448 dim: 448 } layer { name: "conv1" type: "Convolution" bottom: "data" top: "conv1" convolution_param { num_output: 16 kernel_size: 3 pad: 1 stride: 1 } } layer { name: "relu1" type: "ReLU" bottom: "conv1" top: "conv1" relu_param{ negative_slope: 0.1 } } layer { name: "pool1" type: "Pooling" bottom: "conv1" top: "pool1" pooling_param { pool: MAX kernel_size: 2 stride: 2 } } layer{ name: "conv2" type: "Convolution" bottom: "pool1" top: "conv2" convolution_param { num_output: 32 kernel_size: 3 pad: 1 stride: 1 } } layer { name: "relu2" type: "ReLU" bottom: "conv2" top: "conv2" relu_param{ negative_slope: 0.1 } } layer { name: "pool2" type: "Pooling" bottom: "conv2" top: "pool2" pooling_param { pool: MAX kernel_size: 2 stride: 2 } } layer{ name: "conv3" type: "Convolution" bottom: "pool2" top: "conv3" convolution_param { num_output: 64 kernel_size: 3 pad: 1 stride: 1 } } layer { name: "relu3" type: "ReLU" bottom: "conv3" top: "conv3" relu_param{ negative_slope: 0.1 } } layer{ name: "pool3" type: "Pooling" bottom: "conv3" top: "pool3" pooling_param { pool: MAX kernel_size: 2 stride: 2 } } layer{ name: "conv4" type: "Convolution" bottom: "pool3" top: "conv4" convolution_param { num_output: 128 kernel_size: 3 pad: 1 stride: 1 } } layer { name: "relu4" type: "ReLU" bottom: "conv4" top: "conv4" relu_param{ negative_slope: 0.1 } } layer { name: "pool4" type: "Pooling" bottom: "conv4" top: "pool4" pooling_param { pool: MAX kernel_size: 2 stride: 2 } } layer{ name: "conv5" type: "Convolution" bottom: "pool4" top: "conv5" convolution_param { num_output: 256 kernel_size: 3 pad: 1 stride: 1 } } layer { name: "relu5" type: "ReLU" bottom: "conv5" top: "conv5" relu_param{ negative_slope: 0.1 } } layer { name: "pool5" type: "Pooling" bottom: "conv5" top: "pool5" pooling_param { pool: MAX kernel_size: 2 stride: 2 } } layer{ name: "conv6" type: "Convolution" bottom: "pool5" top: "conv6" convolution_param { num_output: 512 kernel_size: 3 pad: 1 stride: 1 } } layer { name: "relu6" type: "ReLU" bottom: "conv6" top: "conv6" relu_param{ negative_slope: 0.1 } } layer { name: "pool6" type: "Pooling" bottom: "conv6" top: "pool6" pooling_param { pool: MAX kernel_size: 2 stride: 2 } } layer{ name: "conv7" type: "Convolution" bottom: "pool6" top: "conv7" convolution_param { num_output: 1024 pad: 1 kernel_size: 3 stride: 1 } } layer { name: "relu7" type: "ReLU" bottom: "conv7" top: "conv7" relu_param{ negative_slope: 0.1 } } layer{ name: "conv8" type: "Convolution" bottom: "conv7" top: "conv8" convolution_param { num_output: 1024 kernel_size: 3 pad: 1 stride: 1 } } layer { name: "relu8" type: "ReLU" bottom: "conv8" top: "conv8" relu_param{ negative_slope: 0.1 } } layer{ name: "conv9" type: "Convolution" bottom: "conv8" top: "conv9" convolution_param { num_output: 1024 kernel_size: 3 pad: 1 stride: 1 } } layer { name: "relu9" type: "ReLU" bottom: "conv9" top: "conv9" relu_param{ negative_slope: 0.1 } } layer{ name: "fc10" type: "InnerProduct" bottom: "conv9" top: "fc10" inner_product_param { num_output: 256 } } layer { name: "fc11" type: "InnerProduct" bottom: "fc10" top: "fc11" inner_product_param { num_output: 4096 } } layer { name: "relu11" type: "ReLU" bottom: "fc11" top: "fc11" relu_param{ negative_slope: 0.1 } } layer { name: "fc12" type: "InnerProduct" bottom: "fc11" top: "result" inner_product_param { num_output: 1470 } }