update changelog

This commit is contained in:
Vladimir Mandic
2023-09-20 14:03:13 -04:00
parent 0986c9ed13
commit b00c323c31
5 changed files with 13 additions and 9 deletions
+8 -4
View File
@@ -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
+1 -1
View File
@@ -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":""},
+2 -2
View File
@@ -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)
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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),