From 634a513ba7b047b433b39c136b23428b5c19e699 Mon Sep 17 00:00:00 2001 From: Stephan Auerhahn Date: Tue, 26 Jul 2022 22:58:23 -0700 Subject: [PATCH] Update predict.py --- predict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/predict.py b/predict.py index 18cfa32..8e38b35 100644 --- a/predict.py +++ b/predict.py @@ -486,7 +486,7 @@ class Predictor(BasePredictor): description="Run both stages (uncheck to run more quickly and output only a few frames)", default=True ), use_guidance: bool = Input(description="Use stage 1 guidance (recommended)", default=True), - image_prompt: Path = Input(description="Starting image") + image_prompt: Path = Input(description="Starting image", default=None) ) -> typing.Iterator[Path]: if translate: prompt = self.translator.translate(prompt.strip())