From 5014d66845bb3838de58186e57e8b5a8fb9ae7a1 Mon Sep 17 00:00:00 2001 From: andreasjansson Date: Wed, 4 Sep 2024 18:54:22 +0200 Subject: [PATCH] Remove mention of img2img --- predict.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/predict.py b/predict.py index 6de4f0e..a8dee29 100644 --- a/predict.py +++ b/predict.py @@ -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.", @@ -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,