Instructions to use Qwen/Qwen-Image-Edit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Qwen/Qwen-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("Qwen/Qwen-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] - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md (#24)
Browse files- Update README.md (d74a782e4d5fae8d0ccbab7f352a10f407cf3e8d)
Co-authored-by: Chenfei Wu <Chenfeifeifei@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -131,4 +131,7 @@ We kindly encourage citation of our work if you find it useful.
|
|
| 131 |
primaryClass={cs.CV},
|
| 132 |
url={https://arxiv.org/abs/2508.02324},
|
| 133 |
}
|
| 134 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
primaryClass={cs.CV},
|
| 132 |
url={https://arxiv.org/abs/2508.02324},
|
| 133 |
}
|
| 134 |
+
```
|
| 135 |
+
|
| 136 |
+
## Join Us
|
| 137 |
+
If you're passionate about fundamental research, we're hiring full-time employees (FTEs) and research interns. Don't wait — reach out to us at fulai.hr@alibaba-inc.com
|