Runwayml Stable-diffusion-v1-5 Download New! -

wget --header="Authorization: Bearer hf_YOUR_TOKEN_HERE" \ https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors

As of late 2024, the original runwayml/stable-diffusion-v1-5 repository on Hugging Face was reorganized. You can now find the official weights and model cards at these primary locations: runwayml stable-diffusion-v1-5 download

As of mid-2023, Hugging Face requires a user access token for downloading gated models. Obtain it from huggingface.co/settings/tokens and log in: runwayml stable-diffusion-v1-5 download

pipe = StableDiffusionPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16, use_auth_token="hf_YOUR_TOKEN_HERE" # Optional if you logged in via huggingface-cli ) pipe.to("cuda") runwayml stable-diffusion-v1-5 download