diff options
author | Sakura-Luna <53183413+Sakura-Luna@users.noreply.github.com> | 2023-05-16 16:32:32 +0000 |
---|---|---|
committer | Sakura-Luna <53183413+Sakura-Luna@users.noreply.github.com> | 2023-05-16 16:32:32 +0000 |
commit | 4fb2cc0f060d1f63e0e62e38d37e983745ce3fda (patch) | |
tree | 80262f32e93411774fd84e76bea8ec178fee18d9 | |
parent | 742da3193290f5692901c4c614c98bec291163f2 (diff) | |
download | stable-diffusion-webui-gfx803-4fb2cc0f060d1f63e0e62e38d37e983745ce3fda.tar.gz stable-diffusion-webui-gfx803-4fb2cc0f060d1f63e0e62e38d37e983745ce3fda.tar.bz2 stable-diffusion-webui-gfx803-4fb2cc0f060d1f63e0e62e38d37e983745ce3fda.zip |
Minor change
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -150,7 +150,7 @@ def check_taesd(): model_url = 'https://github.com/madebyollin/taesd/raw/main/taesd_decoder.pth'
model_path = os.path.join(models_path, "VAE-approx", "taesd_decoder.pth")
if not os.path.exists(model_path):
- print('download taesd model')
+ print('From taesd repo download decoder model')
torch.hub.download_url_to_file(model_url, model_path)
|