aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMartin Cairns <Martin.Cairns+github@gmail.com>2022-10-11 00:04:06 +0100
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-11 15:36:29 +0300
commit1eae3076078f00ecc5d0fac3c77fffb85cd2eb77 (patch)
treeb9670cbd81b219cfe76bde7685c00b0b4d589c3b /modules
parent92d7a138857b308c97a8d009848f642aeb93d6c8 (diff)
Remove debug code for checking that first sigma value is same after code cleanup
Diffstat (limited to 'modules')
-rw-r--r--modules/sd_samplers.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/sd_samplers.py b/modules/sd_samplers.py
index eee52e7d..32272916 100644
--- a/modules/sd_samplers.py
+++ b/modules/sd_samplers.py
@@ -366,7 +366,6 @@ class KDiffusionSampler:
sigmas = self.model_wrap.get_sigmas(steps)
sigma_sched = sigmas[steps - t_enc - 1:]
- print('check values same', sigmas[steps - t_enc - 1] , sigma_sched[0], sigmas[steps - t_enc - 1] - sigma_sched[0])
xi = x + noise * sigma_sched[0]
extra_params_kwargs = self.initialize(p)