Image-to-Image
Diffusers
Safetensors
English
Image-to-Image
ControlNet
Diffusers
QwenImageControlNetInpaintPipeline
Qwen-Image
Instructions to use InstantX/Qwen-Image-ControlNet-Inpainting with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use InstantX/Qwen-Image-ControlNet-Inpainting 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("InstantX/Qwen-Image-ControlNet-Inpainting", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,14 +2,16 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
library_name:
|
| 6 |
-
pipeline_tag:
|
| 7 |
tags:
|
| 8 |
- Image-to-Image
|
| 9 |
- ControlNet
|
| 10 |
- Diffusers
|
| 11 |
- QwenImageControlNetInpaintPipeline
|
| 12 |
- Qwen-Image
|
|
|
|
|
|
|
| 13 |
base_model: Qwen/Qwen-Image
|
| 14 |
---
|
| 15 |
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
+
library_name: flair
|
| 6 |
+
pipeline_tag: summarization
|
| 7 |
tags:
|
| 8 |
- Image-to-Image
|
| 9 |
- ControlNet
|
| 10 |
- Diffusers
|
| 11 |
- QwenImageControlNetInpaintPipeline
|
| 12 |
- Qwen-Image
|
| 13 |
+
- mythology
|
| 14 |
+
- poetry
|
| 15 |
base_model: Qwen/Qwen-Image
|
| 16 |
---
|
| 17 |
|