diff --git a/CHANGELOG.md b/CHANGELOG.md index 300e49ecf..1b4ffb88b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2025-01-09 +## Update for 2025-01-10 - [Allegro Video](https://huggingface.co/rhymes-ai/Allegro) - optimizations: full offload and quantization support diff --git a/modules/control/processors.py b/modules/control/processors.py index aa1275d62..38b5f2062 100644 --- a/modules/control/processors.py +++ b/modules/control/processors.py @@ -167,13 +167,13 @@ def load(self, processor_id: str = None, force: bool = True) -> str: self.config(processor_id) else: if not force and self.model is not None: - log.debug(f'Control Processor: id={processor_id} already loaded') + # log.debug(f'Control Processor: id={processor_id} already loaded') return '' if processor_id not in config: log.error(f'Control Processor unknown: id="{processor_id}" available={list(config)}') return f'Processor failed to load: {processor_id}' cls = config[processor_id]['class'] - log.debug(f'Control Processor loading: id="{processor_id}" class={cls.__name__}') + # log.debug(f'Control Processor loading: id="{processor_id}" class={cls.__name__}') debug(f'Control Processor config={self.load_config}') if 'DWPose' in processor_id: det_ckpt = 'https://download.openmmlab.com/mmdetection/v2.0/yolox/yolox_l_8x8_300e_coco/yolox_l_8x8_300e_coco_20211126_140236-d3bd2b23.pth' diff --git a/modules/control/units/controlnet.py b/modules/control/units/controlnet.py index c887aca8f..d6175ead0 100644 --- a/modules/control/units/controlnet.py +++ b/modules/control/units/controlnet.py @@ -255,7 +255,7 @@ def load(self, model_id: str = None, force: bool = True) -> str: self.model = model_path return if model_id == self.model_id and not force: - log.debug(f'Control {what} model: id="{model_id}" path="{model_path}" already loaded') + # log.debug(f'Control {what} model: id="{model_id}" path="{model_path}" already loaded') return log.debug(f'Control {what} model loading: id="{model_id}" path="{model_path}"') cls, _config = self.get_class(model_id) diff --git a/modules/control/units/lite.py b/modules/control/units/lite.py index 0c10d8d53..914f56c9f 100644 --- a/modules/control/units/lite.py +++ b/modules/control/units/lite.py @@ -95,7 +95,7 @@ def load(self, model_id: str = None, force: bool = True) -> str: log.error(f'Control {what} model load failed: id="{model_id}" error=unknown model id') return if model_id == self.model_id and not force: - log.debug(f'Control {what} model: id="{model_id}" path="{model_path}" already loaded') + # log.debug(f'Control {what} model: id="{model_id}" path="{model_path}" already loaded') return log.debug(f'Control {what} model loading: id="{model_id}" path="{model_path}" {self.load_config}') if model_path.endswith('.safetensors'): diff --git a/modules/control/units/t2iadapter.py b/modules/control/units/t2iadapter.py index 6e15abe3d..6666f67ce 100644 --- a/modules/control/units/t2iadapter.py +++ b/modules/control/units/t2iadapter.py @@ -102,7 +102,7 @@ def load(self, model_id: str = None, force: bool = True) -> str: log.error(f'Control {what} model load failed: id="{model_id}" error=unknown model id') return if model_id == self.model_id and not force: - log.debug(f'Control {what} model: id="{model_id}" path="{model_path}" already loaded') + # log.debug(f'Control {what} model: id="{model_id}" path="{model_path}" already loaded') return log.debug(f'Control {what} model loading: id="{model_id}" path="{model_path}"') if model_path.endswith('.pth') or model_path.endswith('.pt') or model_path.endswith('.safetensors') or model_path.endswith('.bin'): diff --git a/modules/control/units/xs.py b/modules/control/units/xs.py index ff21a5ed7..a90cd97d2 100644 --- a/modules/control/units/xs.py +++ b/modules/control/units/xs.py @@ -91,7 +91,7 @@ def load(self, model_id: str = None, time_embedding_mix: float = 0.0, force: boo log.error(f'Control {what} model load failed: id="{model_id}" error=unknown model id') return if model_id == self.model_id and not force: - log.debug(f'Control {what} model: id="{model_id}" path="{model_path}" already loaded') + # log.debug(f'Control {what} model: id="{model_id}" path="{model_path}" already loaded') return self.load_config['time_embedding_mix'] = time_embedding_mix log.debug(f'Control {what} model loading: id="{model_id}" path="{model_path}" {self.load_config}')