Skip to content

Instantly share code, notes, and snippets.

View chenqi1990's full-sized avatar

chenqi chenqi1990

  • Beijing University of Posts and Telecommunications
  • 10 West Tucheng Road, HaiDian District,Beijing 100876,China
View GitHub Profile
input: "data"
input_shape{
dim: 1
dim: 3
dim: 224
dim: 224
}
layer {
name: "conv1"
type: "Convolution"
input: "data"
input_dim: 1
input_dim: 3
input_dim: 572
input_dim: 572
layers { bottom: 'data' top: 'd0b' name: 'conv_d0a-b' type: CONVOLUTION blobs_lr: 1 blobs_lr: 2 weight_decay: 1 weight_decay: 0 convolution_param { num_output: 64 pad: 0 kernel_size: 3 engine: CAFFE weight_filler { type: 'xavier' }} }
layers { bottom: 'd0b' top: 'd0b' name: 'relu_d0b' type: RELU }
layers { bottom: 'd0b' top: 'd0c' name: 'conv_d0b-c' type: CONVOLUTION blobs_lr: 1 blobs_lr: 2 weight_decay: 1 weight_decay: 0 convolution_param { num_output: 64 pad: 0 kernel_size: 3 engine: CAFFE weight_filler { type: 'xavier' }} }
layers { bottom: 'd0c' top: 'd0c' name: 'relu_d0c' type: RELU }
name: "DenoisingNet"
input: "data"
input_dim: 1
input_dim: 3
input_dim: 64
input_dim: 64
# block1
layer {
name: "conv1"
@chenqi1990
chenqi1990 / edsr_deconv.prototxt
Created September 28, 2017 04:32
edsr network with deconvolution to upsample
input: "data"
input_dim: 1
input_dim: 3
input_dim: 32
input_dim: 32
layer {
name: "conv1"
type: "Convolution"
bottom: "data"
top: "conv1"
@chenqi1990
chenqi1990 / inception_resnet_v2_deploy.prototxt
Last active August 11, 2017 02:54
inception_resnet_v2_deploy with dilated convolution layers
# https://github.com/soeaver/caffe-model/tree/master/cls
name: "dilated_inception_resnet_v2"
input: "data"
input_shape {
dim: 1
dim: 3
dim: 384
dim: 384
}
layer {