Skip to content
New issue

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

Some Code Problem #62

Open
Xiao-Fangff opened this issue Jan 30, 2024 · 2 comments
Open

Some Code Problem #62

Xiao-Fangff opened this issue Jan 30, 2024 · 2 comments

Comments

@Xiao-Fangff
Copy link

In model.StegaStampEncoder.call, I found this code

        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?

@llbbcc
Copy link

llbbcc commented Feb 5, 2024

I think the correct code should be

        conv9 = self.conv9(merge9)
        conv10 = self.conv10(conv9)
        residual = self.residual(conv10)
        return residual

@Xiao-Fangff
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants