Instructions to use wangfuyun/PCM_Weights with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use wangfuyun/PCM_Weights with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("wangfuyun/PCM_Weights", 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
|
@@ -6,4 +6,7 @@ pipeline_tag: text-to-image
|
|
| 6 |
|
| 7 |
LoRA weights of Stable Diffusion XL for fast text-to-image generation.
|
| 8 |
|
|
|
|
|
|
|
|
|
|
| 9 |
[[paper](https://huggingface.co/papers/2405.18407)] [[arXiv](https://arxiv.org/abs/2405.18407)] [[code](https://github.com/G-U-N/Phased-Consistency-Model)] [[project page](https://g-u-n.github.io/projects/pcm)]
|
|
|
|
| 6 |
|
| 7 |
LoRA weights of Stable Diffusion XL for fast text-to-image generation.
|
| 8 |
|
| 9 |
+
|
| 10 |
+
Note: Just find the normalCFG with 4-step is not working well. Trying to solve the issue.
|
| 11 |
+
|
| 12 |
[[paper](https://huggingface.co/papers/2405.18407)] [[arXiv](https://arxiv.org/abs/2405.18407)] [[code](https://github.com/G-U-N/Phased-Consistency-Model)] [[project page](https://g-u-n.github.io/projects/pcm)]
|