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
池化层用的是什么算法?我注意到池化层也会有参数,而且参数个数为pool_type*4,但是实际代码中只用到前四分之一的参数?这是为什么?
The text was updated successfully, but these errors were encountered:
在第二个池化阶段有一个bug,
void Pooling_Layer_2(const hw_fixed src[image_Batch][CONV_2_TYPE][CONV_2_OUTPUT_WH][CONV_2_OUTPUT_WH], const hw_fixed pool_kernel[POOL_1_TYPE*4], const hw_fixed pool_bias[POOL_1_TYPE], hw_fixed dst[image_Batch][CONV_2_TYPE][CONV_3_INPUT_WH][CONV_3_INPUT_WH]){
在这里的POOL_1_TYPE应该改成POOL_2_TYPE
Sorry, something went wrong.
No branches or pull requests
池化层用的是什么算法?我注意到池化层也会有参数,而且参数个数为pool_type*4,但是实际代码中只用到前四分之一的参数?这是为什么?
The text was updated successfully, but these errors were encountered: