赞
踩
GitHub: https://github.com/HolmesShuan/ResNet-18-Caffemodel-on-ImageNet
Prototxt:
- name: "ResNet-18"
- layer {
- name: "data"
- type: "Data"
- top: "data"
- top: "label"
- include {
- phase: TRAIN
- }
- transform_param {
- mirror: true
- crop_size: 224
- mean_value: 104
- mean_value: 117
- mean_value: 123
- }
- data_param {
- source: "../ilsvrc2012/ilsvrc2012_shrt_256_train"
- batch_size: 100
- backend: LMDB
- }
- }
- layer {
- name: "data"
- type: "Data"
- top: "data"
- top: "label"
- include {
- phase: TEST
- }
- transform_param {
- mirror: false
- crop_size: 224
- mean_value: 104
- mean_value: 117
- mean_value: 123
- }
- data_param {
- source: "../ilsvrc2012/ilsvrc2012_shrt_256_val"
- batch_size: 50
- backend: LMDB
- }
- }
-
- layer {
- bottom: "data"
- top: "conv1"
- name: "conv1"
- type: "Convolution"
- convolution_param {
- num_output: 64
- kernel_size: 7
- pad: 3
- stride: 2
- weight_filler {
- type: "msra"
- }
- bias_term: false
-
- }
- }
-
- layer {
- bottom: "conv1"
- top: "conv1"
- name: "bn_conv1"
- type: "BatchNorm"
-
- }
-
- layer {
- bottom: "conv1"
- top: "conv1"
- name: "scale_conv1"
- type: "Scale"
- scale_param {
- bias_term: true
- }
- }
-
- layer {
- bottom: "conv1"
- top: "conv1"
- name: "conv1_relu"
- type: "ReLU"
- }
-
- layer {
- bottom: "conv1"
- top: "pool1"
- name: "pool1"
- type: "Pooling"
- pooling_param {
- kernel_size: 3
- stride: 2
- pool: MAX
- }
- }
-
- layer {
- bottom: "pool1"
- top: "res2a_branch1"
- name: "res2a_branch1"
- type: "Convolution"
- convolution_param {
- num_output: 64
- kernel_size: 1
- pad: 0
- stride: 1
- weight_filler {
- type: "msra"
- }
- bias_term: false
-
- }
- }
-
- layer {
- bottom: "res2a_branch1"
- top: "res2a_branch1"
- name: "bn2a_branch1"
- type: "BatchNorm"
-
- }
-
- layer {
- bottom: "res2a_branch1"
- top: "res2a_branch1"
- name: "scale2a_branch1"
- type: "Scale"
- scale_param {
- bias_term: true
- }
- }
-
- layer {
- bottom: "pool1"
- top: "res2a_branch2a"
- name: "res2a_branch2a"
- type: "Convolution"
- convolution_param {
- num_output: 64
- kernel_size: 3
- pad: 1
- stride: 1
- weight_filler {
- type: "msra"
- }
- bias_term: false
-
- }
- }
-
- layer {
- bottom: "res2a_branch2a"
- top: "res2a_branch2a"
- name: "bn2a_branch2a"
- type: "BatchNorm"
-
- }
-
- layer {
- bottom: "res2a_branch2a"
- top: "res2a_branch2a"
- name: "scale2a_branch2a"
- type: "Scale"
- scale_param {
- bias_term: true
- }
- }
-
- layer {
- bottom: "res2a_branch2a"
- top: "res2a_branch2a"
- name: "res2a_branch2a_relu"
- type: "ReLU"
- }
-
- layer {
- bottom: "res2a_branch2a"
- top: "res2a_branch2b"
- name: "res2a_branch2b"
- type: "Convolution"
- convolution_param {
- num_output: 64
- kernel_size: 3
- pad: 1
- stride: 1
- weight_filler {
- type: "msra"
- }
- bias_term: fa

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。