diff options
author | CookieHCl <nhc7502@snu.ac.kr> | 2022-10-14 18:26:36 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-15 07:21:22 +0000 |
commit | c24df4b486a48c60f48276f7760a9acb4a13e22d (patch) | |
tree | e9ad13f43186712112b0a7a296a94c531b5a2d49 | |
parent | 956363648989694cb4a2fb399b90af1b7b15b45c (diff) | |
download | stable-diffusion-webui-gfx803-c24df4b486a48c60f48276f7760a9acb4a13e22d.tar.gz stable-diffusion-webui-gfx803-c24df4b486a48c60f48276f7760a9acb4a13e22d.tar.bz2 stable-diffusion-webui-gfx803-c24df4b486a48c60f48276f7760a9acb4a13e22d.zip |
Disable compiling deepbooru model
This is only necessary when you have to train,
and compiling model produces warning.
-rw-r--r-- | modules/deepbooru.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/deepbooru.py b/modules/deepbooru.py index f34f3788..4ad334a1 100644 --- a/modules/deepbooru.py +++ b/modules/deepbooru.py @@ -102,7 +102,7 @@ def get_deepbooru_tags_model(): tags = dd.project.load_tags_from_project(model_path) model = dd.project.load_model_from_project( - model_path, compile_model=True + model_path, compile_model=False ) return model, tags |