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
c.G_kwargs.num_fp16_res=c.D_kwargs.num_fp16_res=0# for SynthesisNetworkc.G_kwargs.conv_clamp=c.D_kwargs.conv_clamp=None# for each SynthesisLayer
You can set these after loading G in any script (do it before a for loop so as to not waste resources):
G.synthesis.num_fp16_res=0forname, layerinG.synthesis.named_modules():
ifhasattr(layer, 'conv_clamp'):
layer.conv_clamp=Nonelayer.use_fp16=False# dunno if this is necessary, but it is an attribute; try with and without this
The output of gen_video.py (screenshot from mp4 file with 2x2 grid):
While if I'm running vizualizer.py and enable Force FP32 option the output seems as it should be.
So my question is somehow possible to enable force_fp32 option for gen_video.py
Thanks.
The text was updated successfully, but these errors were encountered: