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
In model.StegaStampEncoder.call, I found this code
model.StegaStampEncoder.call
conva = self.conv9(merge9) conv10 = self.conv10(conv9) residual = self.residual(conv9) return residual
Could you tell me what conva is and why con10 isn't used?
conva
con10
The text was updated successfully, but these errors were encountered:
I think the correct code should be
conv9 = self.conv9(merge9) conv10 = self.conv10(conv9) residual = self.residual(conv10) return residual
Sorry, something went wrong.
I think the correct code should be conv9 = self.conv9(merge9) conv10 = self.conv10(conv9) residual = self.residual(conv10) return residual
Thank you so much! That's what I thought.
No branches or pull requests
In
model.StegaStampEncoder.call
, I found this codeCould you tell me what
conva
is and whycon10
isn't used?The text was updated successfully, but these errors were encountered: