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
Is there a way to add the --precision full option back in? My 1650 renders a green image every time if I don't have that input. I tried editing the script to force it full, but I haven't had any luck.
The text was updated successfully, but these errors were encountered:
parser.add_argument(
"--precision",
type=str,
help="evaluate at this precision",
choices=["full", "autocast"],
default="full" #make your default as you want it to be
)
Line 440 & 507:
precision_scope = autocast if opt.precision=="autocast" else nullcontext
with torch.no_grad():
Is there a way to add the --precision full option back in? My 1650 renders a green image every time if I don't have that input. I tried editing the script to force it full, but I haven't had any luck.
The text was updated successfully, but these errors were encountered: