From 3e1097cb63c724f5f063704df5ede8a18f472f29 Mon Sep 17 00:00:00 2001 From: sayakpaul Date: Thu, 21 Mar 2024 08:33:02 +0530 Subject: [PATCH] Revert "add: space within docs to calculate mememory usage." This reverts commit 78990dd960b8674beaf73d8b8b4e78569e1061c8. --- docs/source/en/using-diffusers/loading.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/docs/source/en/using-diffusers/loading.md b/docs/source/en/using-diffusers/loading.md index 8cc0116040..de87e531ce 100644 --- a/docs/source/en/using-diffusers/loading.md +++ b/docs/source/en/using-diffusers/loading.md @@ -60,23 +60,6 @@ repo_id = "runwayml/stable-diffusion-v1-5" pipe = StableDiffusionImg2ImgPipeline.from_pretrained(repo_id) ``` -You can estimate the memory requirements of a pipeline you want to load beforehand with [this Space](https://huggingface.co/spaces/diffusers/compute-pipeline-size/). - -
- -
- - ### Local pipeline 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: