Instructions to use rootonchair/diffuser_layerdiffuse with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use rootonchair/diffuser_layerdiffuse with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("rootonchair/diffuser_layerdiffuse", 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
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,7 +3,7 @@ license: mit
|
|
| 3 |
---
|
| 4 |
# Diffusers API of Transparent Image Layer Diffusion using Latent Transparency
|
| 5 |
Create transparent image with Diffusers!
|
| 6 |
-
|
| 7 |
Please check the Github repo [here](https://github.com/rootonchair/diffuser_layerdiffuse)
|
| 8 |
|
| 9 |
This is a port to Diffuser from original [SD Webui's Layer Diffusion](https://github.com/layerdiffusion/sd-forge-layerdiffuse) to extend the ability to generate transparent image with your favorite API
|
|
|
|
| 3 |
---
|
| 4 |
# Diffusers API of Transparent Image Layer Diffusion using Latent Transparency
|
| 5 |
Create transparent image with Diffusers!
|
| 6 |
+

|
| 7 |
Please check the Github repo [here](https://github.com/rootonchair/diffuser_layerdiffuse)
|
| 8 |
|
| 9 |
This is a port to Diffuser from original [SD Webui's Layer Diffusion](https://github.com/layerdiffusion/sd-forge-layerdiffuse) to extend the ability to generate transparent image with your favorite API
|