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
源码在cnn.py的54行,多谢了
The text was updated successfully, but these errors were encountered:
这行吗?cnn.py L54
因为输入的维度是 C,H,W,经过一层卷积运算以后是 F,H,W,再经过 pooling 后变成了 F, H/2, W/2,把这些维度 flatten 成一维就行了。其中激活函数不改变维度,卷积核卷积也是做了 padding,不改变长和宽。
Sorry, something went wrong.
@Halfish 对,就是这行。你说卷积后的维度是FxHxW,但是卷积维度的公式是(H-HH+2×pad)/stride+1,这里的pad和stride并没有给出啊,还是说不是按照这个公式算的,多谢了。
79 行不是给了 pad 和 stride?
奥,原来是从后向前推的
No branches or pull requests
源码在cnn.py的54行,多谢了
The text was updated successfully, but these errors were encountered: