From 64ce15d8c19033702ce5ee5aa91543f41010f76b Mon Sep 17 00:00:00 2001 From: Claire Froelich Date: Sat, 12 Aug 2023 21:02:35 -0400 Subject: [PATCH] fix typo in git-lfs command added missing hyphen. "git lfs" is not a command --- docs/source/en/using-diffusers/loading.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/en/using-diffusers/loading.md b/docs/source/en/using-diffusers/loading.md index cea6cf5707e6..3fb11ac92c1f 100644 --- a/docs/source/en/using-diffusers/loading.md +++ b/docs/source/en/using-diffusers/loading.md @@ -65,7 +65,7 @@ pipe = StableDiffusionImg2ImgPipeline.from_pretrained(repo_id) To load a diffusion pipeline locally, use [`git-lfs`](https://git-lfs.github.com/) to manually download the checkpoint (in this case, [`runwayml/stable-diffusion-v1-5`](https://huggingface.co/runwayml/stable-diffusion-v1-5)) to your local disk. This creates a local folder, `./stable-diffusion-v1-5`, on your disk: ```bash -git lfs install +git-lfs install git clone https://huggingface.co/runwayml/stable-diffusion-v1-5 ``` @@ -466,4 +466,4 @@ Every pipeline expects a `model_index.json` file that tells the [`DiffusionPipel "AutoencoderKL" ] } -``` \ No newline at end of file +```