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 commentedon Feb 5, 2024
I think the correct code should be
Xiao-Fangff commentedon Feb 26, 2024
Thank you so much! That's what I thought.