We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InceptionV3有些模块长下面的样子: ‘’‘ layer { name: "conv2d_36" type: "Convolution" bottom: "conv2d_35" top: "conv2d_36" convolution_param { num_output: 128 bias_term: false stride: 1 pad_h: 3 pad_w: 0 kernel_h: 7 kernel_w: 1 } } ‘’‘’ 貌似会出段错误,gdb是下面这句出的错,估计是没有kernel_size报了caffe内部错误。 ‘’‘ convolution_param.kernel_size(0); ‘’‘’ 倪神能不考虑下支持InceptionV3这种妖孽卷积核?
The text was updated successfully, but these errors were encountered:
#102
Sorry, something went wrong.
No branches or pull requests
InceptionV3有些模块长下面的样子:
‘’‘
layer {
name: "conv2d_36"
type: "Convolution"
bottom: "conv2d_35"
top: "conv2d_36"
convolution_param {
num_output: 128
bias_term: false
stride: 1
pad_h: 3
pad_w: 0
kernel_h: 7
kernel_w: 1
}
}
‘’‘’
貌似会出段错误,gdb是下面这句出的错,估计是没有kernel_size报了caffe内部错误。
‘’‘
convolution_param.kernel_size(0);
‘’‘’
倪神能不考虑下支持InceptionV3这种妖孽卷积核?
The text was updated successfully, but these errors were encountered: