Merge branch 'comfyanonymous:master' into master

This commit is contained in:
patientx 2025-03-06 22:23:13 +03:00 committed by GitHub
commit 03825eaa28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -228,6 +228,7 @@ class SDClipModel(torch.nn.Module, ClipTokenWeightEncoder):
if pad_extra > 0:
padd_embed = self.transformer.get_input_embeddings()(torch.tensor([[self.special_tokens["pad"]] * pad_extra], device=device, dtype=torch.long), out_dtype=torch.float32)
tokens_embed = torch.cat([tokens_embed, padd_embed], dim=1)
attention_mask = attention_mask + [0] * pad_extra
embeds_out.append(tokens_embed)
attention_masks.append(attention_mask)

View File

@ -1,3 +1,3 @@
# This file is automatically generated by the build process when version is
# updated in pyproject.toml.
__version__ = "0.3.23"
__version__ = "0.3.24"

View File

@ -1,6 +1,6 @@
[project]
name = "ComfyUI"
version = "0.3.23"
version = "0.3.24"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"