Runwayml Stable-diffusion-v1-5 Huggingface Download ~upd~ Direct
After successful download (diffusers format):
stable-diffusion-v1-5/ ├── model_index.json ├── text_encoder/ ├── unet/ ├── vae/ ├── scheduler/ ├── tokenizer/ ├── safety_checker/ └── feature_extractor/ runwayml stable-diffusion-v1-5 huggingface download
Even if the download succeeds, loading the model might crash your GPU. runwayml stable-diffusion-v1-5 huggingface download
pipe = StableDiffusionPipeline.from_pretrained("./stable-diffusion-v1-5", torch_dtype=torch.float16) pipe.to("cuda") image = pipe("a photograph of an astronaut riding a horse").images[0] image.save("test_output.png") print("Model works correctly.") runwayml stable-diffusion-v1-5 huggingface download