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
|
@@ -6,7 +6,7 @@ library_name: diffusers
|
|
| 6 |
# Diffusers API of Transparent Image Layer Diffusion using Latent Transparency
|
| 7 |
Create transparent image with Diffusers!
|
| 8 |

|
| 9 |
-
Please check the Github repo
|
| 10 |
|
| 11 |
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
|
| 12 |
|
|
|
|
| 6 |
# Diffusers API of Transparent Image Layer Diffusion using Latent Transparency
|
| 7 |
Create transparent image with Diffusers!
|
| 8 |

|
| 9 |
+
Please check the Github repo here: https://github.com/rootonchair/diffuser_layerdiffuse
|
| 10 |
|
| 11 |
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
|
| 12 |
|