diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-21 08:39:47 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-21 08:39:47 +0300 |
commit | 8d1d64f9a238272d7a166d21e25cf529c09b2ad5 (patch) | |
tree | 9bfa8239c7bfcd8070c12f56d2743bcf3681dab6 /modules | |
parent | 1578859305f3593fa213309e505905e607a0e52c (diff) |
fix for swininr PR breaking ESRGAN for new users
Diffstat (limited to 'modules')
-rw-r--r-- | modules/esrgan_model.py | 4 | ||||
-rw-r--r-- | modules/realesrgan_model.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/esrgan_model.py b/modules/esrgan_model.py index 7f3baf31..930e790c 100644 --- a/modules/esrgan_model.py +++ b/modules/esrgan_model.py @@ -92,10 +92,10 @@ def upscale_without_tiling(model, img): def esrgan_upscale(model, img):
- if opts.ESRGAN_tile == 0:
+ if opts.GAN_tile == 0:
return upscale_without_tiling(model, img)
- grid = modules.images.split_grid(img, opts.ESRGAN_tile, opts.ESRGAN_tile, opts.ESRGAN_tile_overlap)
+ grid = modules.images.split_grid(img, opts.GAN_tile, opts.GAN_tile, opts.GAN_tile_overlap)
newtiles = []
scale_factor = 1
diff --git a/modules/realesrgan_model.py b/modules/realesrgan_model.py index e2cef0c8..8873b381 100644 --- a/modules/realesrgan_model.py +++ b/modules/realesrgan_model.py @@ -77,7 +77,7 @@ def upscale_with_realesrgan(image, RealESRGAN_upscaling, RealESRGAN_model_index) model_path=info.location,
model=model,
half=not cmd_opts.no_half,
- tile=opts.ESRGAN_tile,
+ tile=opts.GAN_tile,
tile_pad=opts.ESRGAN_tile_overlap,
)
|