diff --git a/inference_realesrgan.py b/inference_realesrgan.py index 107a8c0..cd8991e 100644 --- a/inference_realesrgan.py +++ b/inference_realesrgan.py @@ -83,7 +83,7 @@ def main(): if args.face_enhance: # Use GFPGAN for face enhancement from gfpgan import GFPGANer face_enhancer = GFPGANer( - model_path='https://github.com/TencentARC/GFPGAN/releases/download/v0.2.0/GFPGANCleanv1-NoCE-C2.pth', + model_path='https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth', upscale=args.outscale, arch='clean', channel_multiplier=2, diff --git a/inference_realesrgan_video.py b/inference_realesrgan_video.py index 1f3af46..e58e20d 100644 --- a/inference_realesrgan_video.py +++ b/inference_realesrgan_video.py @@ -96,7 +96,7 @@ def main(): if args.face_enhance: # Use GFPGAN for face enhancement from gfpgan import GFPGANer face_enhancer = GFPGANer( - model_path='https://github.com/TencentARC/GFPGAN/releases/download/v0.2.0/GFPGANCleanv1-NoCE-C2.pth', + model_path='https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth', upscale=args.outscale, arch='clean', channel_multiplier=2,