Binxu
Binxu
Bump this up the pile!
Bump this up the pile !
Bump up this thread
Doing some gradient analysis I found gradient vanishing phenomena to the last correlation layer or encoding layer is quite strong.... My intuition is the correlation output usually has a much...
I have the same concern. Actually this practice reminds me of how people train VAE. Maybe the author fear the Discriminator is too weak at this moment, so better use...
I encountered the same error when trying to use this config (models/ldm/text2img256/config.yaml) I tried to fix it by changing the L136 `shape = [4, opt.H//8, opt.W//8]` to `shape = [3,...
https://libraries.io/pypi/torch-dwconv Besides, I'm not sure if this library could be used to substitute the compiled `upfirdn2d`
Bump up this thread again!
@rosinality Currently I used this .view statement ```python def fused_leaky_relu(input, bias, negative_slope=0.2, scale=2 ** 0.5): return scale * F.leaky_relu(input + bias.view((1, -1)+(1,)*(len(input.shape)-2)), negative_slope=negative_slope) ``` Not sure if this is the...
> In my experience, jupyter notebooks performance degrades very quickly in the size of the notebook. This is especially true for plotly.express plots, and is independent of whether I am...