Skip to content

Commit

Permalink
Fix T5EncoderField initialization in SD3 model loader.
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanJDick authored and hipsterusername committed Jan 29, 2025
1 parent debcbd6 commit 285313b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invokeai/app/invocations/sd3_model_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ def invoke(self, context: InvocationContext) -> Sd3ModelLoaderOutput:
transformer=TransformerField(transformer=transformer, loras=[]),
clip_l=CLIPField(tokenizer=tokenizer_l, text_encoder=clip_encoder_l, loras=[], skipped_layers=0),
clip_g=CLIPField(tokenizer=tokenizer_g, text_encoder=clip_encoder_g, loras=[], skipped_layers=0),
t5_encoder=T5EncoderField(tokenizer=tokenizer_t5, text_encoder=t5_encoder),
t5_encoder=T5EncoderField(tokenizer=tokenizer_t5, text_encoder=t5_encoder, loras=[]),
vae=VAEField(vae=vae),
)

0 comments on commit 285313b

Please sign in to comment.