Image-to-Image
Diffusers
Safetensors
image-decomposition
layered-image-editing
diffusion
flux
lora
transparent-rgba
Instructions to use SynLayers/synlayers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use SynLayers/synlayers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("fill-in-base-model", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("SynLayers/synlayers") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,11 +1,14 @@
|
|
| 1 |
---
|
| 2 |
library_name: diffusers
|
| 3 |
tags:
|
| 4 |
-
- diffusion
|
| 5 |
- image-decomposition
|
| 6 |
-
- rgba
|
| 7 |
- layered-image-editing
|
| 8 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# SynLayers Stage 2 Checkpoints
|
|
|
|
| 1 |
---
|
| 2 |
library_name: diffusers
|
| 3 |
tags:
|
|
|
|
| 4 |
- image-decomposition
|
|
|
|
| 5 |
- layered-image-editing
|
| 6 |
+
- diffusion
|
| 7 |
+
- flux
|
| 8 |
+
- lora
|
| 9 |
+
- image-to-image
|
| 10 |
+
- transparent-rgba
|
| 11 |
+
- arxiv:2605.15167
|
| 12 |
---
|
| 13 |
|
| 14 |
# SynLayers Stage 2 Checkpoints
|