Fix/Revert opts name from GAN to ESRGAN

This commit is contained in:
d8ahazard
2022-09-21 08:38:38 -05:00
committed by AUTOMATIC1111
parent 9a93a82b82
commit 4f434c8aea
2 changed files with 4 additions and 4 deletions

View File

@@ -96,8 +96,8 @@ def upscale_with_realesrgan(image, RealESRGAN_upscaling, RealESRGAN_model_index)
model_path=info.location,
model=model,
half=not cmd_opts.no_half,
tile=opts.GAN_tile,
tile_pad=opts.GAN_tile_overlap,
tile=opts.ESRGAN_tile,
tile_pad=opts.ESRGAN_tile_overlap,
)
upsampled = upsampler.enhance(np.array(image), outscale=RealESRGAN_upscaling)[0]