Instructions to use xiaolxl/WestMagic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use xiaolxl/WestMagic with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("xiaolxl/WestMagic", 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
|
@@ -52,6 +52,8 @@ best quality, masterpiece, highres, 1body,male,man,Beautiful face
|
|
| 52 |
|
| 53 |
- **建议的采样器:DPM++ SDE Karras - Recommended sampler: DPM++SDE Karras**
|
| 54 |
|
|
|
|
|
|
|
| 55 |
# 例图 - Examples
|
| 56 |
|
| 57 |
(可在文件列表中找到原图,并放入WebUi查看关键词等信息) - (You can find the original image in the file list, and put WebUi to view keywords and other information)
|
|
|
|
| 52 |
|
| 53 |
- **建议的采样器:DPM++ SDE Karras - Recommended sampler: DPM++SDE Karras**
|
| 54 |
|
| 55 |
+
- **建议的VAE:vae-ft-mse-840000-ema-pruned**
|
| 56 |
+
|
| 57 |
# 例图 - Examples
|
| 58 |
|
| 59 |
(可在文件列表中找到原图,并放入WebUi查看关键词等信息) - (You can find the original image in the file list, and put WebUi to view keywords and other information)
|