Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support of Stable Cascade #29

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion adv_encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
from math import gcd

from comfy import model_management
from comfy.sdxl_clip import SDXLClipModel, SDXLRefinerClipModel, SDXLClipG
from comfy.sdxl_clip import (SDXLClipG, SDXLClipModel, SDXLRefinerClipModel,
StableCascadeClipModel)

def _grouper(n, iterable):
it = iter(iterable)
Expand Down Expand Up @@ -262,6 +263,16 @@ def advanced_encode(clip, text, token_normalization, weight_interpretation, w_ma
return_pooled=True,
apply_to_pooled=apply_to_pooled)
return prepareXL(embs_l, embs_g, pooled, clip_balance)
elif isinstance(clip.cond_stage_model, StableCascadeClipModel):
return advanced_encode_from_tokens(
tokenized['g'],
token_normalization,
weight_interpretation,
lambda x: encode_token_weights(clip, x, encode_token_weights_g),
w_max=w_max,
return_pooled=True,
apply_to_pooled=apply_to_pooled
)
else:
return advanced_encode_from_tokens(tokenized['l'],
token_normalization,
Expand Down