Merge pull request #11 from Craftyawesome/fix-gfpgan-vram

Workaround for gfpgan OOM on 6GB
master
AUTOMATIC1111 3 years ago committed by GitHub
commit a51bedfb5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -678,6 +678,7 @@ def process_images(outpath, func_init, func_sample, prompt, seed, sampler_index,
x_sample = x_sample.astype(np.uint8)
if use_GFPGAN and GFPGAN is not None:
torch_gc()
cropped_faces, restored_faces, restored_img = GFPGAN.enhance(x_sample, has_aligned=False, only_center_face=False, paste_back=True)
x_sample = restored_img

Loading…
Cancel
Save