remove prints

This commit is contained in:
kijai 2025-02-03 14:57:55 +02:00
parent 046bb97fac
commit 2755e6b956
2 changed files with 3 additions and 3 deletions

View File

@ -485,7 +485,7 @@ class HunyuanPaintPipeline(StableDiffusionPipeline):
timesteps, num_inference_steps = retrieve_timesteps(
self.scheduler, num_inference_steps, device, timesteps, sigmas
)
print("timesteps", timesteps)
#print("timesteps", timesteps)
assert num_images_per_prompt == 1
# 5. Prepare latent variables
num_channels_latents = self.unet.config.in_channels
@ -503,7 +503,7 @@ class HunyuanPaintPipeline(StableDiffusionPipeline):
latents,
denoise_strength=denoise_strength,
)
print("timesteps", timesteps)
#print("timesteps", timesteps)
# 6. Prepare extra step kwargs. TODO: Logic should ideally just be moved out of the pipeline
extra_step_kwargs = self.prepare_extra_step_kwargs(generator, eta)

View File

@ -1447,7 +1447,7 @@ class Hy3DNvdiffrastRenderer:
texture = transform(pil_texture).to(device)
texture = texture.unsqueeze(0).permute(0, 2, 3, 1).contiguous() #need to be contiguous for nvdiffrast
else:
print("No texture found")
log.warning("No texture found")
# Fallback to vertex colors if no texture
uvs = None
texture = None