Instructions to use ByteDance/Hyper-SD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ByteDance/Hyper-SD with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("ByteDance/Hyper-SD") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -15,13 +15,13 @@ Project Page: https://hyper-sd.github.io/
|
|
| 15 |

|
| 16 |
|
| 17 |
## Try our Hugging Face demos:
|
| 18 |
-
|
| 19 |
|
| 20 |
-
One-step Text-to-Image demo host on [🤗 T2I](https://huggingface.co/spaces/ByteDance/Hyper-SDXL-1Step-T2I)
|
| 21 |
|
| 22 |
## Introduction
|
| 23 |
|
| 24 |
-
Hyper-SD is one of the new State-of-the-Art diffusion model acceleration
|
| 25 |
In this repository, we release the models distilled from [SDXL Base 1.0](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0) and [Stable-Diffusion v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5)。
|
| 26 |
|
| 27 |
## Checkpoints
|
|
|
|
| 15 |

|
| 16 |
|
| 17 |
## Try our Hugging Face demos:
|
| 18 |
+
Hyper-SD Scribble demo host on [🤗 scribble](https://huggingface.co/spaces/ByteDance/Hyper-SD15-Scribble)
|
| 19 |
|
| 20 |
+
Hyper-SDXL One-step Text-to-Image demo host on [🤗 T2I](https://huggingface.co/spaces/ByteDance/Hyper-SDXL-1Step-T2I)
|
| 21 |
|
| 22 |
## Introduction
|
| 23 |
|
| 24 |
+
Hyper-SD is one of the new State-of-the-Art diffusion model acceleration techniques.
|
| 25 |
In this repository, we release the models distilled from [SDXL Base 1.0](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0) and [Stable-Diffusion v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5)。
|
| 26 |
|
| 27 |
## Checkpoints
|