mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-09-15 05:57:57 +00:00
Fix hunyuan refiner blownout colors at noise aug less than 0.25 (#9832)
This commit is contained in:
@@ -1449,7 +1449,9 @@ class HunyuanImage21Refiner(HunyuanImage21):
|
||||
image = utils.resize_to_batch_size(image, noise.shape[0])
|
||||
if noise_augmentation > 0:
|
||||
noise = torch.randn(image.shape, generator=torch.manual_seed(kwargs.get("seed", 0) - 10), dtype=image.dtype, device="cpu").to(image.device)
|
||||
image = noise_augmentation * noise + (1.0 - noise_augmentation) * image
|
||||
image = noise_augmentation * noise + min(1.0 - noise_augmentation, 0.75) * image
|
||||
else:
|
||||
image = 0.75 * image
|
||||
return image
|
||||
|
||||
def extra_conds(self, **kwargs):
|
||||
|
Reference in New Issue
Block a user