Instructions to use BestWishYsh/Helios-Distilled with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use BestWishYsh/Helios-Distilled with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("BestWishYsh/Helios-Distilled", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -113,15 +113,15 @@ Download models using huggingface-cli:
|
|
| 113 |
pip install "huggingface_hub[cli]"
|
| 114 |
huggingface-cli download BestWishYSH/Helios-Base --local-dir BestWishYSH/Helios-Base
|
| 115 |
huggingface-cli download BestWishYSH/Helios-Mid --local-dir BestWishYSH/Helios-Mid
|
| 116 |
-
huggingface-cli download BestWishYSH/Helios-Distilled --local-dir BestWishYSH/
|
| 117 |
```
|
| 118 |
|
| 119 |
Download models using modelscope-cli:
|
| 120 |
``` sh
|
| 121 |
pip install modelscope
|
| 122 |
modelscope download BestWishYSH/Helios-Base --local_dir BestWishYSH/Helios-Base
|
| 123 |
-
modelscope download BestWishYSH/Helios-Mid --
|
| 124 |
-
modelscope download BestWishYSH/Helios-Distilled --
|
| 125 |
```
|
| 126 |
|
| 127 |
|
|
|
|
| 113 |
pip install "huggingface_hub[cli]"
|
| 114 |
huggingface-cli download BestWishYSH/Helios-Base --local-dir BestWishYSH/Helios-Base
|
| 115 |
huggingface-cli download BestWishYSH/Helios-Mid --local-dir BestWishYSH/Helios-Mid
|
| 116 |
+
huggingface-cli download BestWishYSH/Helios-Distilled --local-dir BestWishYSH/Helios-Distilled
|
| 117 |
```
|
| 118 |
|
| 119 |
Download models using modelscope-cli:
|
| 120 |
``` sh
|
| 121 |
pip install modelscope
|
| 122 |
modelscope download BestWishYSH/Helios-Base --local_dir BestWishYSH/Helios-Base
|
| 123 |
+
modelscope download BestWishYSH/Helios-Mid --local_dir BestWishYSH/Helios-Mid
|
| 124 |
+
modelscope download BestWishYSH/Helios-Distilled --local_dir BestWishYSH/Helios-Distilled
|
| 125 |
```
|
| 126 |
|
| 127 |
|