From d234bf1cb97f327d848982fa86e2512180123494 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Sat, 15 Jul 2023 21:27:10 +1000 Subject: [PATCH] feat(install): display full ESRGAN model filenames during installation --- invokeai/backend/install/invokeai_configure.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/invokeai/backend/install/invokeai_configure.py b/invokeai/backend/install/invokeai_configure.py index 9d126a0a93..91f379a573 100755 --- a/invokeai/backend/install/invokeai_configure.py +++ b/invokeai/backend/install/invokeai_configure.py @@ -223,22 +223,22 @@ def download_conversion_models(): # --------------------------------------------- def download_realesrgan(): - logger.info("Installing models from RealESRGAN...") + logger.info("Installing RealESRGAN models...") URLs = [ dict( url = "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth", dest = "core/upscaling/realesrgan/RealESRGAN_x4plus.pth", - description = "RealESRGAN X4 Plus", + description = "RealESRGAN_x4plus.pth", ), dict( url = "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.2.4/RealESRGAN_x4plus_anime_6B.pth", dest = "core/upscaling/realesrgan/RealESRGAN_x4plus_anime_6B.pth", - description = "RealESRGAN X4 Plus Anime 6B", + description = "RealESRGAN_x4plus_anime_6B.pth", ), dict( url= "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.1/ESRGAN_SRx4_DF2KOST_official-ff704c30.pth", dest= "core/upscaling/realesrgan/ESRGAN_SRx4_DF2KOST_official-ff704c30.pth", - description = "RealESRGAN X4 Official", + description = "ESRGAN_SRx4_DF2KOST_official.pth", ), ] for model in URLs: