Last active
December 27, 2016 13:38
-
-
Save hustzxd/f4f66059057f42c56523ccd989325e4f to your computer and use it in GitHub Desktop.
yolo2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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