2024-08-01 08:03:59 +00:00
|
|
|
from comfy import sd1_clip
|
|
|
|
import comfy.text_encoders.t5
|
2024-08-01 15:05:56 +00:00
|
|
|
import comfy.model_management
|
2024-08-01 08:03:59 +00:00
|
|
|
from transformers import T5TokenizerFast
|
|
|
|
import torch
|
|
|
|
import os
|
|
|
|
|
|
|
|
class T5XXLModel(sd1_clip.SDClipModel):
|
2024-08-17 14:15:13 +00:00
|
|
|
def __init__(self, device="cpu", layer="last", layer_idx=None, dtype=None, model_options={}):
|
2024-08-01 08:03:59 +00:00
|
|
|
textmodel_json_config = os.path.join(os.path.dirname(os.path.realpath(__file__)), "t5_config_xxl.json")
|
2024-08-17 14:15:13 +00:00
|
|
|
super().__init__(device=device, layer=layer, layer_idx=layer_idx, textmodel_json_config=textmodel_json_config, dtype=dtype, special_tokens={"end": 1, "pad": 0}, model_class=comfy.text_encoders.t5.T5, model_options=model_options)
|
2024-08-01 08:03:59 +00:00
|
|
|
|
|
|
|
class T5XXLTokenizer(sd1_clip.SDTokenizer):
|
|
|
|
def __init__(self, embedding_directory=None, tokenizer_data={}):
|
|
|
|
tokenizer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "t5_tokenizer")
|
|
|
|
super().__init__(tokenizer_path, pad_with_end=False, embedding_size=4096, embedding_key='t5xxl', tokenizer_class=T5TokenizerFast, has_start_token=False, pad_to_max_length=False, max_length=99999999, min_length=256)
|
|
|
|
|
|
|
|
|
|
|
|
class FluxTokenizer:
|
|
|
|
def __init__(self, embedding_directory=None, tokenizer_data={}):
|
2024-09-15 11:59:18 +00:00
|
|
|
clip_l_tokenizer_class = tokenizer_data.get("clip_l_tokenizer_class", sd1_clip.SDTokenizer)
|
|
|
|
self.clip_l = clip_l_tokenizer_class(embedding_directory=embedding_directory)
|
2024-08-01 08:03:59 +00:00
|
|
|
self.t5xxl = T5XXLTokenizer(embedding_directory=embedding_directory)
|
|
|
|
|
|
|
|
def tokenize_with_weights(self, text:str, return_word_ids=False):
|
|
|
|
out = {}
|
|
|
|
out["l"] = self.clip_l.tokenize_with_weights(text, return_word_ids)
|
|
|
|
out["t5xxl"] = self.t5xxl.tokenize_with_weights(text, return_word_ids)
|
|
|
|
return out
|
|
|
|
|
|
|
|
def untokenize(self, token_weight_pair):
|
2024-08-02 01:40:56 +00:00
|
|
|
return self.clip_l.untokenize(token_weight_pair)
|
2024-08-01 08:03:59 +00:00
|
|
|
|
|
|
|
def state_dict(self):
|
|
|
|
return {}
|
|
|
|
|
|
|
|
|
|
|
|
class FluxClipModel(torch.nn.Module):
|
2024-08-17 14:15:13 +00:00
|
|
|
def __init__(self, dtype_t5=None, device="cpu", dtype=None, model_options={}):
|
2024-08-01 08:03:59 +00:00
|
|
|
super().__init__()
|
2024-08-01 15:05:56 +00:00
|
|
|
dtype_t5 = comfy.model_management.pick_weight_dtype(dtype_t5, dtype, device)
|
2024-09-15 11:59:18 +00:00
|
|
|
clip_l_class = model_options.get("clip_l_class", sd1_clip.SDClipModel)
|
|
|
|
self.clip_l = clip_l_class(device=device, dtype=dtype, return_projected_pooled=False, model_options=model_options)
|
2024-08-17 14:15:13 +00:00
|
|
|
self.t5xxl = T5XXLModel(device=device, dtype=dtype_t5, model_options=model_options)
|
2024-08-01 15:05:56 +00:00
|
|
|
self.dtypes = set([dtype, dtype_t5])
|
2024-08-01 08:03:59 +00:00
|
|
|
|
|
|
|
def set_clip_options(self, options):
|
|
|
|
self.clip_l.set_clip_options(options)
|
|
|
|
self.t5xxl.set_clip_options(options)
|
|
|
|
|
|
|
|
def reset_clip_options(self):
|
|
|
|
self.clip_l.reset_clip_options()
|
|
|
|
self.t5xxl.reset_clip_options()
|
|
|
|
|
|
|
|
def encode_token_weights(self, token_weight_pairs):
|
|
|
|
token_weight_pairs_l = token_weight_pairs["l"]
|
2024-08-04 21:10:02 +00:00
|
|
|
token_weight_pairs_t5 = token_weight_pairs["t5xxl"]
|
2024-08-01 08:03:59 +00:00
|
|
|
|
2024-08-04 21:10:02 +00:00
|
|
|
t5_out, t5_pooled = self.t5xxl.encode_token_weights(token_weight_pairs_t5)
|
2024-08-01 08:03:59 +00:00
|
|
|
l_out, l_pooled = self.clip_l.encode_token_weights(token_weight_pairs_l)
|
|
|
|
return t5_out, l_pooled
|
|
|
|
|
|
|
|
def load_sd(self, sd):
|
|
|
|
if "text_model.encoder.layers.1.mlp.fc1.weight" in sd:
|
|
|
|
return self.clip_l.load_sd(sd)
|
|
|
|
else:
|
|
|
|
return self.t5xxl.load_sd(sd)
|
|
|
|
|
2024-08-01 15:05:56 +00:00
|
|
|
def flux_clip(dtype_t5=None):
|
|
|
|
class FluxClipModel_(FluxClipModel):
|
2024-08-17 14:15:13 +00:00
|
|
|
def __init__(self, device="cpu", dtype=None, model_options={}):
|
|
|
|
super().__init__(dtype_t5=dtype_t5, device=device, dtype=dtype, model_options=model_options)
|
2024-08-01 15:05:56 +00:00
|
|
|
return FluxClipModel_
|