diff --git a/hy3dgen/texgen/hunyuanpaint/pipeline.py b/hy3dgen/texgen/hunyuanpaint/pipeline.py index a03e282..809c805 100755 --- a/hy3dgen/texgen/hunyuanpaint/pipeline.py +++ b/hy3dgen/texgen/hunyuanpaint/pipeline.py @@ -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) diff --git a/nodes.py b/nodes.py index cd2aae8..d91355d 100644 --- a/nodes.py +++ b/nodes.py @@ -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