From 23524ad8c5027e5691d749b6ae778106c469f16a Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Mon, 3 Apr 2023 22:58:54 -0400 Subject: [PATCH] Remove print. --- comfy/samplers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/comfy/samplers.py b/comfy/samplers.py index 59dbab5..93f5d36 100644 --- a/comfy/samplers.py +++ b/comfy/samplers.py @@ -366,7 +366,6 @@ def encode_adm(noise_augmentor, conds, batch_size, device): #TODO: add a way to control this noise_augment = 0.05 noise_level = round((noise_augmentor.max_noise_level - 1) * noise_augment) - print(noise_level) c_adm, noise_level_emb = noise_augmentor(adm_out[:, :noise_augmentor.time_embed.dim], noise_level=torch.tensor([noise_level], device=device)) adm_out = torch.cat((c_adm, noise_level_emb), 1) else: