From 72640888ffc6bcdda612432c27c8528cf0e76da8 Mon Sep 17 00:00:00 2001 From: Yousef Rafat <81116377+yousef-rafat@users.noreply.github.com> Date: Mon, 30 Mar 2026 23:20:46 +0200 Subject: [PATCH] wrong normalization for the texture node --- comfy_extras/nodes_trellis2.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/comfy_extras/nodes_trellis2.py b/comfy_extras/nodes_trellis2.py index f58dbf592..77e6a3add 100644 --- a/comfy_extras/nodes_trellis2.py +++ b/comfy_extras/nodes_trellis2.py @@ -442,11 +442,6 @@ class EmptyTextureLatentTrellis2(IO.ComfyNode): if shape_latent.ndim == 4: shape_latent = shape_latent.squeeze(-1).transpose(1, 2).reshape(-1, channels) - std = shape_slat_normalization["std"].to(shape_latent) - mean = shape_slat_normalization["mean"].to(shape_latent) - shape_latent = SparseTensor(feats = shape_latent, coords=coords) - shape_latent = (shape_latent - mean) / std - latent = torch.randn(1, channels, coords.shape[0], 1) model = model.clone() model.model_options = model.model_options.copy()