Skip to content

Some Code Problem #62

@Xiao-Fangff

Description

@Xiao-Fangff

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?

Activity

llbbcc

llbbcc commented on Feb 5, 2024

@llbbcc

I think the correct code should be

        conv9 = self.conv9(merge9)
        conv10 = self.conv10(conv9)
        residual = self.residual(conv10)
        return residual
Xiao-Fangff

Xiao-Fangff commented on Feb 26, 2024

@Xiao-Fangff
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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @llbbcc@Xiao-Fangff

        Issue actions

          Some Code Problem · Issue #62 · tancik/StegaStamp