Text-to-Image
Diffusers
Safetensors
StableDiffusionPipeline
stable-diffusion
stable-diffusion-diffusers
Instructions to use stablediffusiontutorials/stable-diffusion-v1.5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use stablediffusiontutorials/stable-diffusion-v1.5 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stablediffusiontutorials/stable-diffusion-v1.5", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,6 +19,8 @@ extra_gated_heading: Please read the LICENSE to access this model
|
|
| 19 |
|
| 20 |
# Stable Diffusion v1-5 Model Card
|
| 21 |
|
|
|
|
|
|
|
| 22 |
Stable Diffusion is a latent text-to-image diffusion model capable of generating photo-realistic images given any text input.
|
| 23 |
For more information about how Stable Diffusion functions, please have a look at [🤗's Stable Diffusion blog](https://huggingface.co/blog/stable_diffusion).
|
| 24 |
|
|
|
|
| 19 |
|
| 20 |
# Stable Diffusion v1-5 Model Card
|
| 21 |
|
| 22 |
+
### Note: ⚠️ This repository is a mirror of the now deprecated ruwnayml/stable-diffusion-v1-5, this repository or oganization are not affiliated in any way with RunwayML. If you are a liable party, you can request for legal removal.
|
| 23 |
+
|
| 24 |
Stable Diffusion is a latent text-to-image diffusion model capable of generating photo-realistic images given any text input.
|
| 25 |
For more information about how Stable Diffusion functions, please have a look at [🤗's Stable Diffusion blog](https://huggingface.co/blog/stable_diffusion).
|
| 26 |
|