Skip to content

Commit

Permalink
(minor) Fix --lora-model arg help text.
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanJDick committed May 30, 2024
1 parent 70dc9fa commit 8c9fb0a
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,8 @@
from invokeai.backend.model_manager import BaseModelType
from invokeai.backend.lora import LoRAModelRaw
from invokeai.backend.model_patcher import ModelPatcher

# fmt: on
from invoke_training._shared.stable_diffusion.model_loading_utils import (
PipelineVersionEnum, load_pipeline)

from invoke_training._shared.stable_diffusion.model_loading_utils import PipelineVersionEnum, load_pipeline


# TODO(ryand): Consolidate multiple implementations of this function across the project.
Expand Down Expand Up @@ -174,8 +171,8 @@ def main():
type=str,
nargs="+",
help="The path(s) to one or more LoRA models to merge into the base model. Model weights can be appended to "
"the path, separated by a double colon ('::'). E.g. 'path/to/lora_model|0.5'. The weight is optional and defaults to "
"1.0.",
"the path, separated by a double colon ('::'). E.g. 'path/to/lora_model::0.5'. The weight is optional and "
"defaults to 1.0.",
required=True,
)
parser.add_argument(
Expand Down

0 comments on commit 8c9fb0a

Please sign in to comment.