Skip to content

Commit 32963c2

Browse files
authored
Fix git-lfs command typo in docs (huggingface#4586)
fix typo in git-lfs command added missing hyphen. "git lfs" is not a command
1 parent 1b739e7 commit 32963c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/en/using-diffusers/loading.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pipe = StableDiffusionImg2ImgPipeline.from_pretrained(repo_id)
6565
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:
6666

6767
```bash
68-
git lfs install
68+
git-lfs install
6969
git clone https://huggingface.co/runwayml/stable-diffusion-v1-5
7070
```
7171

@@ -466,4 +466,4 @@ Every pipeline expects a `model_index.json` file that tells the [`DiffusionPipel
466466
"AutoencoderKL"
467467
]
468468
}
469-
```
469+
```

0 commit comments

Comments
 (0)