Skip to content

Commit

Permalink
Remove mention of img2img
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasjansson committed Sep 4, 2024
1 parent e7c89b9 commit 5014d66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def predict( # pyright: ignore
description="Prompt for generated image. If you include the `trigger_word` used in the training process you are more likely to activate the trained object, style, or concept in the resulting image."
),
image: Path = Input(
description="Input image for img2img or inpaint mode", default=None
description="Input image for inpaint mode", default=None
),
mask: Path = Input(
description="Input mask for inpaint mode. Black areas will be preserved, white areas will be inpainted.",
Expand Down Expand Up @@ -220,7 +220,7 @@ def predict( # pyright: ignore
default=3.5,
),
prompt_strength: float = Input(
description="Strength for img2img or inpaint. 1.0 corresponds to full destruction of information in image",
description="Strength for inpainting. 1.0 corresponds to full destruction of information in image",
ge=0.0,
le=1.0,
default=0.8,
Expand Down

0 comments on commit 5014d66

Please sign in to comment.