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
I was trying to implement it on image compression task. I use this model as follows, and the input shape is 16, 32, 96, 96.
def forward(self, x):
b, c, h, w = x.shape
x = x.reshape(b, c, -1).permute(0, 2, 1)
x = self.act1(x)
x = self.drop1(x)
x = self.fc1(x)
x = self.act2(x)
x = self.drop2(x)
x = self.fc2(x)
x = x.permute(0, 2, 1).reshape(b, c, h, w)
return x
However, my model cannot converge during training.
@truong04 I finally found that the problem was caused by using the wrong function. We should use KAT_Group2D to process the image signal, otherwise it cannot converge.
Hi,
This work looks great.
I was trying to implement it on image compression task. I use this model as follows, and the input shape is
16, 32, 96, 96
.However, my model cannot converge during training.
Could you please give me some advice?
Thanks you very much.
The text was updated successfully, but these errors were encountered: