Instructions to use callgg/image-edit-plus with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use callgg/image-edit-plus 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("callgg/image-edit-plus", 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
#1
by Aliarkan20 - opened
README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
library_name: diffusers
|
| 4 |
-
|
|
|
|
|
|
|
| 5 |
## image-edit-plus
|
| 6 |
-
- tokenizer
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
datasets:
|
| 5 |
+
- Alibaba-Apsara/Superior-Reasoning-SFT-gpt-oss-120b
|
| 6 |
+
---
|
| 7 |
## image-edit-plus
|
| 8 |
+
- tokenizer
|