We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a74e210 commit ba2048dCopy full SHA for ba2048d
invokeai/app/invocations/model.py
@@ -249,7 +249,7 @@ class SDXLLoraLoaderInvocation(BaseInvocation):
249
"""Apply selected lora to unet and text_encoder."""
250
251
lora: LoRAModelField = InputField(description=FieldDescriptions.lora_model, input=Input.Direct, title="LoRA")
252
- weight: float = Field(default=0.75, description=FieldDescriptions.lora_weight)
+ weight: float = InputField(default=0.75, description=FieldDescriptions.lora_weight)
253
unet: Optional[UNetField] = Field(
254
default=None, description=FieldDescriptions.unet, input=Input.Connection, title="UNET"
255
)
0 commit comments