Image-to-Image
Diffusers
Safetensors
Sana
English
image-editing
text-guided-editing
diffusion
qwen-vl
multimodal
Instructions to use iitolstykh/VIBE-Image-Edit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use iitolstykh/VIBE-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("iitolstykh/VIBE-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] - Sana
How to use iitolstykh/VIBE-Image-Edit with Sana:
# Load the model and infer image from text import torch from app.sana_pipeline import SanaPipeline from torchvision.utils import save_image sana = SanaPipeline("configs/sana_config/1024ms/Sana_1600M_img1024.yaml") sana.from_pretrained("hf://iitolstykh/VIBE-Image-Edit") image = sana( prompt='a cyberpunk cat with a neon sign that says "Sana"', height=1024, width=1024, guidance_scale=5.0, pag_guidance_scale=2.0, num_inference_steps=18, ) - Notebooks
- Google Colab
- Kaggle
Upload 12 files
Browse files- .gitattributes +12 -0
- images/1.png +3 -0
- images/11.png +3 -0
- images/12.png +3 -0
- images/13.png +3 -0
- images/2.png +3 -0
- images/3.png +3 -0
- images/4.png +3 -0
- images/5.png +3 -0
- images/6.png +3 -0
- images/7.png +3 -0
- images/8.png +3 -0
- images/9.png +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
VIBE.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
VIBE.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
images/1.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
images/11.png filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
images/12.png filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
images/13.png filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
images/2.png filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
images/3.png filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
images/4.png filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
images/5.png filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
images/6.png filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
images/7.png filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
images/8.png filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
images/9.png filter=lfs diff=lfs merge=lfs -text
|
images/1.png
ADDED
|
Git LFS Details
|
images/11.png
ADDED
|
Git LFS Details
|
images/12.png
ADDED
|
Git LFS Details
|
images/13.png
ADDED
|
Git LFS Details
|
images/2.png
ADDED
|
Git LFS Details
|
images/3.png
ADDED
|
Git LFS Details
|
images/4.png
ADDED
|
Git LFS Details
|
images/5.png
ADDED
|
Git LFS Details
|
images/6.png
ADDED
|
Git LFS Details
|
images/7.png
ADDED
|
Git LFS Details
|
images/8.png
ADDED
|
Git LFS Details
|
images/9.png
ADDED
|
Git LFS Details
|