Image-to-Image
Diffusers
Safetensors
English
QwenImageEditPlusPipeline
image-edit
zen
zenlm
hanzo
image-editing
diffusion
Instructions to use zenlm/zen-image-edit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use zenlm/zen-image-edit 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("zenlm/zen-image-edit", dtype=torch.bfloat16, device_map="cuda") 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
Restore upstream attribution in NOTICE (Qwen-Image-Edit-2509)
#1
by zeekay - opened
NOTICE
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
-
|
| 2 |
Copyright 2025-2026 Zen Authors
|
| 3 |
|
| 4 |
-
This model
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
zen-image-edit
|
| 2 |
Copyright 2025-2026 Zen Authors
|
| 3 |
|
| 4 |
+
This model is a derivative work distributed under the Apache-2.0 license.
|
| 5 |
+
A copy of the license is in the accompanying LICENSE file.
|
| 6 |
+
|
| 7 |
+
Built on:
|
| 8 |
+
- Qwen-Image-Edit-2509 (https://huggingface.co/Qwen/Qwen-Image-Edit-2509), Apache-2.0.
|