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 noticed an error/warning because of the strides misshape in DDP when you train the architecture ddpmpp, a simple fix for this is to fix the operation in the attention modules contiguously. Here's the error :
params[166] in this process with sizes [256, 256, 1, 1] appears not to match strides of the same param in process 0.
To fix it you need to modify 5 lines of code.
For the AttentionOP modules you modify the backward and forward from :
Hi,
I noticed an error/warning because of the strides misshape in DDP when you train the architecture ddpmpp, a simple fix for this is to fix the operation in the attention modules contiguously. Here's the error :
params[166] in this process with sizes [256, 256, 1, 1] appears not to match strides of the same param in process 0.
To fix it you need to modify 5 lines of code.
For the AttentionOP modules you modify the backward and forward from :
to :
and in the UNetBlock module, from :
to :
I know that the author find this warning/error and decided to mute it, to solve it you just need those few lines of code
The text was updated successfully, but these errors were encountered: