mirror of
https://github.com/vladmandic/automatic
synced 2026-09-18 16:54:33 +02:00
update changelog
This commit is contained in:
+8
-4
@@ -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
@@ -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":""},
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
|
||||
@@ -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
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user