-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Supporting of lfs and GIT_LFS_SKIP_SMUDGE in stable_diffusion_xl_git_…
…recipe
- Loading branch information
1 parent
edd5cc5
commit c20bdb4
Showing
1 changed file
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
{ | ||
"_producer_rules": [ | ||
[ [ "git_repo", "repo_name=stable_diffusion_xl_base_1.0_git" ], [["get_kernel"],["byname","git"],["clone"]], { | ||
}, [ "url" ] ] | ||
[ [ "git_repo", "repo_name=stable_diffusion_xl_base_1.0_git" ], [ | ||
["get_kernel"], | ||
["byname","git"], | ||
["clone"], | ||
["run",[],{ | ||
"cmd_key": "generic", | ||
"rest_of_cmd": "lfs pull -I vae_decoder/model.onnx", | ||
"capture_output": false, | ||
"get_and_return_on_success": "__entry__" | ||
}] | ||
], {}, [ "url", "env" ] ] | ||
], | ||
"url": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0" | ||
"url": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0", | ||
"env": { | ||
"GIT_LFS_SKIP_SMUDGE": "1" | ||
} | ||
} |