From 8c662268e05eb1b6cf5282dfc6892228e2f985a1 Mon Sep 17 00:00:00 2001 From: Muerrilla <48160881+muerrilla@users.noreply.github.com> Date: Wed, 3 Jul 2024 23:59:10 +0330 Subject: [PATCH] Edited warning messages --- scripts/detail_daemon.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/detail_daemon.py b/scripts/detail_daemon.py index 9e9cd79..f42fb42 100644 --- a/scripts/detail_daemon.py +++ b/scripts/detail_daemon.py @@ -116,7 +116,7 @@ class Script(scripts.Script): if enabled: if p.sampler_name == "DPM adaptive": - tqdm.write(f'\033[33mINFO:\033[0m Detail Daemon does not work with {p.sampler_name}') + tqdm.write(f'\033[33mWARNING:\033[0m Detail Daemon does not work with {p.sampler_name}') return # Restart can be handled better, later maybe @@ -156,9 +156,9 @@ class Script(scripts.Script): multiplier = self.schedule[idx] * .1 mode = self.mode if params.sigma.size(0) == 1: - mode = "forge" + mode = "both" if idx == 0: - tqdm.write(f'\033[33mINFO:\033[0m Forge does not support `cond` and `uncond` modes') + tqdm.write(f'\033[33mWARNING:\033[0m Forge does not support `cond` and `uncond` modes, using `both` instead') if mode == "cond": params.sigma[0] *= 1 - multiplier elif mode == "uncond":