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
When BatchNorm with affine=True is used, the previous layer's bias is cancelled (See the original BN paper for details). The current implementation's Conv2D layers are used with bias=True, so by changing bias=False, UNet and NestedUnet might be faster.
The text was updated successfully, but these errors were encountered:
When
BatchNorm
withaffine=True
is used, the previous layer's bias is cancelled (See the original BN paper for details). The current implementation'sConv2D
layers are used withbias=True
, so by changingbias=False
, UNet and NestedUnet might be faster.The text was updated successfully, but these errors were encountered: