Apply suggestions from code review

main
Patrick von Platen 3 years ago committed by GitHub
parent d0c714ae4a
commit 536eb1a8ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -237,9 +237,7 @@ def main():
if opt.fixed_code:
start_code = torch.randn([opt.n_samples, opt.C, opt.H // opt.f, opt.W // opt.f], device=device)
print("start code", start_code.abs().sum())
precision_scope = autocast if opt.precision=="autocast" else nullcontext
precision_scope = nullcontext
with torch.no_grad():
with precision_scope("cuda"):
with model.ema_scope():
@ -288,6 +286,7 @@ def main():
Image.fromarray(grid.astype(np.uint8)).save(os.path.join(outpath, f'grid-{grid_count:04}.png'))
grid_count += 1
toc = time.time()
image = x_samples_ddim.cpu().permute(0, 2, 3, 1).numpy()
# run safety checker

Loading…
Cancel
Save