(minor) remove remaining incorrect references to T5 encoder in comments.

This commit is contained in:
Ryan Dick 2024-09-27 14:46:25 +00:00 committed by Kent Keirsey
parent 3463a968c7
commit ba8ef6ff0f
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ class FluxLoRALoaderOutput(BaseInvocationOutput):
classification=Classification.Prototype,
)
class FluxLoRALoaderInvocation(BaseInvocation):
"""Apply a LoRA model to a FLUX transformer and/or T5 encoder."""
"""Apply a LoRA model to a FLUX transformer and/or text encoder."""
lora: ModelIdentifierField = InputField(
description=FieldDescriptions.lora_model, title="LoRA", ui_type=UIType.LoRAModel

View File

@ -93,7 +93,7 @@ class FluxTextEncoderInvocation(BaseInvocation):
clip_text_encoder_config = clip_text_encoder_info.config
assert clip_text_encoder_config is not None
# Apply LoRA models to the T5 encoder.
# Apply LoRA models to the CLIP encoder.
# Note: We apply the LoRA after the transformer has been moved to its target device for faster patching.
if clip_text_encoder_config.format in [ModelFormat.Diffusers]:
# The model is non-quantized, so we can apply the LoRA weights directly into the model.

View File

@ -6397,7 +6397,7 @@ export type components = {
};
/**
* FLUX LoRA
* @description Apply a LoRA model to a FLUX transformer and/or T5 encoder.
* @description Apply a LoRA model to a FLUX transformer and/or text encoder.
*/
FluxLoRALoaderInvocation: {
/**