Skip to content

Instantly share code, notes, and snippets.

@joelouismarino
Created July 30, 2017 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joelouismarino/7e4df6294ec76046972a1e9a6366230c to your computer and use it in GitHub Desktop.
Save joelouismarino/7e4df6294ec76046972a1e9a6366230c to your computer and use it in GitHub Desktop.
layer {
name: "conv1/7x7_s2"
type: "Convolution"
bottom: "data"
top: "conv1/7x7_s2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 64
pad: 3
kernel_size: 7
stride: 2
weight_filler {
type: "xavier"
std: 0.1
}
bias_filler {
type: "constant"
value: 0.2
}
}
}
layer {
name: "conv1/relu_7x7"
type: "ReLU"
bottom: "conv1/7x7_s2"
top: "conv1/7x7_s2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment