Skip to content

Instantly share code, notes, and snippets.

@hustzxd
Last active December 27, 2016 13:38
Show Gist options
  • Save hustzxd/f4f66059057f42c56523ccd989325e4f to your computer and use it in GitHub Desktop.
Save hustzxd/f4f66059057f42c56523ccd989325e4f to your computer and use it in GitHub Desktop.
yolo2
name: "convolution"
input: "data"
input_dim: 1
input_dim: 1
input_dim: 100
input_dim: 100
layer {
name: "conv"
type: "Convolution"
bottom: "data"
top: "conv"
convolution_param {
num_output: 3
kernel_size: 5
stride: 1
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment