diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-31 15:46:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 15:46:15 +0000 |
commit | 0b0f60f9549f067791418c085ac2a306a147c8d3 (patch) | |
tree | fd1b3c1095d7b0fc5675e3feb4754a59e2cec044 /modules/paths.py | |
parent | 69f49a935a13d9e89af7404de1bef617dfaf9285 (diff) | |
parent | 5fcdaa6a7f19d083a6393cc0d2b933ff5080f5b3 (diff) | |
download | stable-diffusion-webui-gfx803-0b0f60f9549f067791418c085ac2a306a147c8d3.tar.gz stable-diffusion-webui-gfx803-0b0f60f9549f067791418c085ac2a306a147c8d3.tar.bz2 stable-diffusion-webui-gfx803-0b0f60f9549f067791418c085ac2a306a147c8d3.zip |
Merge pull request #10856 from akx/untamed
Remove taming_transformers dependency
Diffstat (limited to 'modules/paths.py')
-rw-r--r-- | modules/paths.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/paths.py b/modules/paths.py index 5f6474c0..5171df4f 100644 --- a/modules/paths.py +++ b/modules/paths.py @@ -20,7 +20,6 @@ assert sd_path is not None, f"Couldn't find Stable Diffusion in any of: {possibl path_dirs = [
(sd_path, 'ldm', 'Stable Diffusion', []),
- (os.path.join(sd_path, '../taming-transformers'), 'taming', 'Taming Transformers', []),
(os.path.join(sd_path, '../CodeFormer'), 'inference_codeformer.py', 'CodeFormer', []),
(os.path.join(sd_path, '../BLIP'), 'models/blip.py', 'BLIP', []),
(os.path.join(sd_path, '../k-diffusion'), 'k_diffusion/sampling.py', 'k_diffusion', ["atstart"]),
|