|
|
|
|
@ -15,6 +15,7 @@ requirements_file = os.environ.get('REQS_FILE', "requirements_versions.txt")
|
|
|
|
|
commandline_args = os.environ.get('COMMANDLINE_ARGS', "")
|
|
|
|
|
|
|
|
|
|
gfpgan_package = os.environ.get('GFPGAN_PACKAGE', "git+https://github.com/TencentARC/GFPGAN.git@8d2447a2d918f8eba5a4a01463fd48e45126a379")
|
|
|
|
|
clip_package = os.environ.get('CLIP_PACKAGE', "git+https://github.com/openai/CLIP.git@d50d76daa670286dd6cacf3bcd80b5e4823fc8e1")
|
|
|
|
|
|
|
|
|
|
stable_diffusion_commit_hash = os.environ.get('STABLE_DIFFUSION_COMMIT_HASH', "69ae4b35e0a0f6ee1af8bb9a5d0016ccb27e36dc")
|
|
|
|
|
taming_transformers_commit_hash = os.environ.get('TAMING_TRANSFORMERS_COMMIT_HASH', "24268930bf1dce879235a7fddd0b2355b84d7ea6")
|
|
|
|
|
@ -111,6 +112,9 @@ if not skip_torch_cuda_test:
|
|
|
|
|
if not is_installed("gfpgan"):
|
|
|
|
|
run_pip(f"install {gfpgan_package}", "gfpgan")
|
|
|
|
|
|
|
|
|
|
if not is_installed("clip"):
|
|
|
|
|
run_pip(f"install {clip_package}", "clip")
|
|
|
|
|
|
|
|
|
|
os.makedirs(dir_repos, exist_ok=True)
|
|
|
|
|
|
|
|
|
|
git_clone("https://github.com/CompVis/stable-diffusion.git", repo_dir('stable-diffusion'), "Stable Diffusion", stable_diffusion_commit_hash)
|
|
|
|
|
|