From d4f62177febc049c02efb3d8199f81a4c14eccea Mon Sep 17 00:00:00 2001 From: Victor Hall Date: Sat, 8 Jul 2023 14:59:38 -0400 Subject: [PATCH] remove errant input --- utils/huggingface_downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/huggingface_downloader.py b/utils/huggingface_downloader.py index eb847ed..f08eabb 100644 --- a/utils/huggingface_downloader.py +++ b/utils/huggingface_downloader.py @@ -35,5 +35,5 @@ def try_download_model_from_hf(repo_id: str) -> Tuple[StableDiffusionPipeline, s is_sd1_attn, yaml_path = get_attn_yaml(cache_folder) print(f"* HuggingFace Downloaded model from {repo_id} to {cache_folder}.") print(f"** Using attention yaml file: {yaml_path}, is_sd1_attn: {is_sd1_attn}.") - pause = input("Press enter to continue...") + return pipe, cache_folder, is_sd1_attn, yaml_path