Fix clip_g/clip_l mixup (#4168)

This commit is contained in:
Alexander Brown 2024-08-01 18:40:56 -07:00 committed by GitHub
parent e638f2858a
commit ce9ac2fe05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class FluxTokenizer:
return out
def untokenize(self, token_weight_pair):
return self.clip_g.untokenize(token_weight_pair)
return self.clip_l.untokenize(token_weight_pair)
def state_dict(self):
return {}