diff options
author | d8ahazard <d8ahazard@gmail.com> | 2022-09-21 12:32:50 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-22 04:21:54 +0000 |
commit | 3cc68300cb81a12c574a0cb67bd6a27198b88310 (patch) | |
tree | 4ab383075420727a6177aeb591b749b966764760 /modules/realesrgan_model.py | |
parent | dd5566814acb9623b201c441b458d0d6a7014f2f (diff) | |
download | stable-diffusion-webui-gfx803-3cc68300cb81a12c574a0cb67bd6a27198b88310.tar.gz stable-diffusion-webui-gfx803-3cc68300cb81a12c574a0cb67bd6a27198b88310.tar.bz2 stable-diffusion-webui-gfx803-3cc68300cb81a12c574a0cb67bd6a27198b88310.zip |
Typo Fix
Diffstat (limited to 'modules/realesrgan_model.py')
-rw-r--r-- | modules/realesrgan_model.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/realesrgan_model.py b/modules/realesrgan_model.py index 1f1af0c3..7220feb7 100644 --- a/modules/realesrgan_model.py +++ b/modules/realesrgan_model.py @@ -59,7 +59,7 @@ def setup_realesrgan(): ),
RealesrganModelInfo(
name="Real-ESRGAN 4x plus",
- location="https://github.com/xinntao/Real-ESRGA N/releases/download/v0.1.0/RealESRGAN_x4plus.pth",
+ location="https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth",
netscale=4, model=lambda: RRDBNet(num_in_ch=3, num_out_ch=3, num_feat=64, num_block=23, num_grow_ch=32, scale=4)
),
RealesrganModelInfo(
|