remove output_altered flag from AfterCFGCallbackParams

This commit is contained in:
AUTOMATIC 2023-05-14 08:15:22 +03:00
parent cb9a3a7809
commit 005849331e
2 changed files with 1 additions and 5 deletions

View File

@ -78,9 +78,6 @@ class AfterCFGCallbackParams:
self.total_sampling_steps = total_sampling_steps
"""Total number of sampling steps planned"""
self.output_altered = False
"""A flag for CFGDenoiser indicating whether the output has been altered by the callback"""
class UiTrainTabParams:
def __init__(self, txt2img_preview_params):

View File

@ -183,7 +183,6 @@ class CFGDenoiser(torch.nn.Module):
after_cfg_callback_params = AfterCFGCallbackParams(denoised, state.sampling_step, state.sampling_steps)
cfg_after_cfg_callback(after_cfg_callback_params)
if after_cfg_callback_params.output_altered:
denoised = after_cfg_callback_params.x
self.step += 1