diff options
author | d8ahazard <d8ahazard@gmail.com> | 2022-10-02 17:58:17 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-02 18:02:03 +0000 |
commit | 6365a41f5981efa506dfe4e8fa878b43ca2d8d0c (patch) | |
tree | 35ef99cae5285d8d87cf84c472b2009232194257 /modules | |
parent | 3ff0de2c594b786ef948a89efb1814c59bb42117 (diff) | |
download | stable-diffusion-webui-gfx803-6365a41f5981efa506dfe4e8fa878b43ca2d8d0c.tar.gz stable-diffusion-webui-gfx803-6365a41f5981efa506dfe4e8fa878b43ca2d8d0c.tar.bz2 stable-diffusion-webui-gfx803-6365a41f5981efa506dfe4e8fa878b43ca2d8d0c.zip |
Update esrgan_model.py
Use alternate ESRGAN Model download path.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/esrgan_model.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/esrgan_model.py b/modules/esrgan_model.py index ea91abfe..4aed9283 100644 --- a/modules/esrgan_model.py +++ b/modules/esrgan_model.py @@ -73,8 +73,8 @@ def fix_model_layers(crt_model, pretrained_net): class UpscalerESRGAN(Upscaler):
def __init__(self, dirname):
self.name = "ESRGAN"
- self.model_url = "https://drive.google.com/u/0/uc?id=1TPrz5QKd8DHHt1k8SRtm6tMiPjz_Qene&export=download"
- self.model_name = "ESRGAN 4x"
+ self.model_url = "https://github.com/cszn/KAIR/releases/download/v1.0/ESRGAN.pth"
+ self.model_name = "ESRGAN_4x"
self.scalers = []
self.user_path = dirname
self.model_path = os.path.join(models_path, self.name)
|