diff options
author | brkirch <brkirch@users.noreply.github.com> | 2022-10-04 01:04:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 01:04:19 -0400 |
commit | b88e4ea7d6536ddc814a9101a258f87b06230019 (patch) | |
tree | 913bdda300b7082aa61429689d0a730cecda1525 /modules/esrgan_model.py | |
parent | bdaa36c84470adbdce3e98c01a69af5e95adfb02 (diff) | |
parent | 2865ef4b9ab16d56326cc805541bebcf01d099bc (diff) |
Merge branch 'master' into master
Diffstat (limited to 'modules/esrgan_model.py')
-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)
|