Skip to content

Commit

Permalink
add hash and fix undo hijack bug
Browse files Browse the repository at this point in the history
Signed-off-by: zhaohu xing <[email protected]>
  • Loading branch information
920232796 committed Dec 6, 2022
1 parent a25dfeb commit 5dcc226
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
Binary file added .DS_Store
Binary file not shown.
10 changes: 5 additions & 5 deletions launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,11 @@ def prepare_enviroment():

os.makedirs(dir_repos, exist_ok=True)

git_clone(stable_diffusion_repo, repo_dir('stable-diffusion-stability-ai'), "Stable Diffusion", )
git_clone(taming_transformers_repo, repo_dir('taming-transformers'), "Taming Transformers", )
git_clone(k_diffusion_repo, repo_dir('k-diffusion'), "K-diffusion", )
git_clone(codeformer_repo, repo_dir('CodeFormer'), "CodeFormer", )
git_clone(blip_repo, repo_dir('BLIP'), "BLIP", )
git_clone(stable_diffusion_repo, repo_dir('stable-diffusion-stability-ai'), "Stable Diffusion", stable_diffusion_commit_hash)
git_clone(taming_transformers_repo, repo_dir('taming-transformers'), "Taming Transformers", taming_transformers_commit_hash)
git_clone(k_diffusion_repo, repo_dir('k-diffusion'), "K-diffusion", k_diffusion_commit_hash)
git_clone(codeformer_repo, repo_dir('CodeFormer'), "CodeFormer", codeformer_commit_hash)
git_clone(blip_repo, repo_dir('BLIP'), "BLIP", blip_commit_hash)

if not is_installed("lpips"):
run_pip(f"install -r {os.path.join(repo_dir('CodeFormer'), 'requirements.txt')}", "requirements for CodeFormer")
Expand Down
6 changes: 5 additions & 1 deletion modules/sd_hijack.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,11 @@ def flatten(el):
self.layers = flatten(m)

def undo_hijack(self, m):
if type(m.cond_stage_model) == sd_hijack_clip.FrozenCLIPEmbedderWithCustomWords:

if shared.text_model_name == "XLMR-Large":
m.cond_stage_model = m.cond_stage_model.wrapped

elif type(m.cond_stage_model) == sd_hijack_clip.FrozenCLIPEmbedderWithCustomWords:
m.cond_stage_model = m.cond_stage_model.wrapped

model_embeddings = m.cond_stage_model.transformer.text_model.embeddings
Expand Down
1 change: 1 addition & 0 deletions v2-inference.yaml → v2-inference-v.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ model:
base_learning_rate: 1.0e-4
target: ldm.models.diffusion.ddpm.LatentDiffusion
params:
parameterization: "v"
linear_start: 0.00085
linear_end: 0.0120
num_timesteps_cond: 1
Expand Down

0 comments on commit 5dcc226

Please sign in to comment.