Closed sRassmann closed 9 months ago
Never mind, I just found that the implementation uses the image_size from the config (set to 32 by default), while I am using my own dataloaders with image_size set to 256. Hence, passing in the correct size to the net's constructors solved the issue.
Hi, I am trying to train SynDiff on my on data using the cmd args as pointed out in the readme. I am encountering the following error in the forward function:
The issue seems to be that the corresponding
AttnBlockpp
takes only two args (self, x) rather than the additional (..., zemb, temb) arguments.Could you please point out what I am doing wrong?
Thanks