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
+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),