You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
out = out * (1 - occlusion_last) + encode_i
out = self.final(out)
out = torch.sigmoid(out)
out = out * (1 - occlusion_last) + deformed_source * occlusion_last
请问可以解释一下这几行代码的含义吗,我理解的是out * (1 - occlusion_last)保留未遮挡部分,再加上需要修复的源区域?
The text was updated successfully, but these errors were encountered: