From 20c0754c38a86f3f6085766c58683e2116482159 Mon Sep 17 00:00:00 2001 From: Eason Chen <43432631+EasonC13@users.noreply.github.com> Date: Mon, 18 Dec 2023 19:47:34 -0500 Subject: [PATCH 1/2] Update README.md for donwload pre-train model instructions --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 471610db..9fdc402c 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,17 @@ conda activate lavie ``` ## Download Pre-Trained models -Download pre-trained [LaVie models](https://huggingface.co/YaohuiW/LaVie/tree/main), [Stable Diffusion 1.4](https://huggingface.co/CompVis/stable-diffusion-v1-4/tree/main), [stable-diffusion-x4-upscaler](https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler/tree/main) to `./pretrained_models`. You should be able to see the following: +Download pre-trained [LaVie models](https://huggingface.co/YaohuiW/LaVie/tree/main), [Stable Diffusion 1.4](https://huggingface.co/CompVis/stable-diffusion-v1-4/tree/main), [stable-diffusion-x4-upscaler](https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler/tree/main) to `./pretrained_models` by the following command: + +``` +cd ./pretrained_models +git clone https://huggingface.co/CompVis/stable-diffusion-v1-4 +git clone https://huggingface.co/Vchitect/LaVie +git clone https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler +``` + + +After the download, you should be able to see the following: ``` ├── pretrained_models │ ├── lavie_base.pt From 63864e8121213c8a58f3eff4913d3ed0d845670b Mon Sep 17 00:00:00 2001 From: Eason Chen <43432631+EasonC13@users.noreply.github.com> Date: Mon, 18 Dec 2023 20:20:58 -0500 Subject: [PATCH 2/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9fdc402c..081a7de0 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ cd ./pretrained_models git clone https://huggingface.co/CompVis/stable-diffusion-v1-4 git clone https://huggingface.co/Vchitect/LaVie git clone https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler +cp -r LaVie/* . ```