小萝卜学深度学习-全连接层

小萝卜学深度学习-全连接层_第1张图片

FCN(Fulling connection layer)作用:起一个分类器的作用,用于找出权值大的特征。


convolution_param{

    num_output: 36 # 4 * 9(anchors)

    kernel_size: 1

    pad: 0

    stride: 1

    weight_filler {

    type: "xavier"

/////////////////////////一. 初始化 

////////////有人用normal初始化cnn的参数,最后acc只能到////////////70%多,仅仅改成xavier,acc可以到98%。

    }

    bias_filler {

    type: "constant"

    value: 0

    }

  }

你可能感兴趣的:(小萝卜学深度学习-全连接层)