diff --git a/CHANGELOG.md b/CHANGELOG.md index 2917625ab..e74e340cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,16 @@ # Change Log for SD.Next -## Update for 2023-09-18 - -Downgrade of `diffusers` to 0.20.2 due to critical issue with model offloading -This means that new model **Wuerstchen** is not supported until diffusers issue is resolved +## Update for 2023-09-20 - Added **change log** to UI, see *System -> Changelog* - **Extra networks**: faster search, ability to show/hide/sort networks +- **Upscalers**: complete refactor... + - more high quality upscalers available by default + - unified init/download/execute/progress code + - easier installation + - available in **xyz grid** + - allow upscale-only as part of **txt2img** and **img2img** workflows + simply set *denoising strength* to 0 so hires does not get triggered ## Update for 2023-09-13 diff --git a/html/locale_en.json b/html/locale_en.json index f17742039..36d55d0e8 100644 --- a/html/locale_en.json +++ b/html/locale_en.json @@ -412,7 +412,7 @@ {"id":"","label":"Folder with ESRGAN models","localized":"","hint":""}, {"id":"","label":"Folder with BSRGAN models","localized":"","hint":""}, {"id":"","label":"Folder with RealESRGAN models","localized":"","hint":""}, - {"id":"","label":"Folder with ScuNET models","localized":"","hint":""}, + {"id":"","label":"Folder with SCUNet models","localized":"","hint":""}, {"id":"","label":"Folder with SwinIR models","localized":"","hint":""}, {"id":"","label":"Folder with LDSR models","localized":"","hint":""}, {"id":"","label":"Folder with CLIP models","localized":"","hint":""}, diff --git a/modules/modelloader.py b/modules/modelloader.py index 8963f9a19..85fbfb7b2 100644 --- a/modules/modelloader.py +++ b/modules/modelloader.py @@ -448,8 +448,8 @@ def cleanup_models(): src_path = os.path.join(root_path, "repositories/latent-diffusion/experiments/pretrained_models/") dest_path = os.path.join(models_path, "LDSR") move_files(src_path, dest_path) - src_path = os.path.join(root_path, "ScuNET") - dest_path = os.path.join(models_path, "ScuNET") + src_path = os.path.join(root_path, "SCUNet") + dest_path = os.path.join(models_path, "SCUNet") move_files(src_path, dest_path) diff --git a/modules/postprocess/scunet_model.py b/modules/postprocess/scunet_model.py index 200fd3d65..b266547e2 100644 --- a/modules/postprocess/scunet_model.py +++ b/modules/postprocess/scunet_model.py @@ -8,7 +8,7 @@ from modules.shared import opts, log, console, device from modules.upscaler import Upscaler -class UpscalerScuNET(Upscaler): +class UpscalerSCUNet(Upscaler): def __init__(self, dirname): self.name = "SCUNet" self.user_path = dirname diff --git a/modules/shared.py b/modules/shared.py index bd792ee5c..988bd3051 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -467,7 +467,7 @@ options_templates.update(options_section(('system-paths', "System Paths"), { "esrgan_models_path": OptionInfo(os.path.join(paths.models_path, 'ESRGAN'), "Folder with ESRGAN models", folder=True), "bsrgan_models_path": OptionInfo(os.path.join(paths.models_path, 'BSRGAN'), "Folder with BSRGAN models", folder=True), "realesrgan_models_path": OptionInfo(os.path.join(paths.models_path, 'RealESRGAN'), "Folder with RealESRGAN models", folder=True), - "scunet_models_path": OptionInfo(os.path.join(paths.models_path, 'ScuNET'), "Folder with ScuNET models", folder=True), + "scunet_models_path": OptionInfo(os.path.join(paths.models_path, 'SCUNet'), "Folder with SCUNet models", folder=True), "swinir_models_path": OptionInfo(os.path.join(paths.models_path, 'SwinIR'), "Folder with SwinIR models", folder=True), "ldsr_models_path": OptionInfo(os.path.join(paths.models_path, 'LDSR'), "Folder with LDSR models", folder=True), "clip_models_path": OptionInfo(os.path.join(paths.models_path, 'CLIP'), "Folder with CLIP models", folder=True),