Instructions to use Yw22/BlobCtrl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Yw22/BlobCtrl 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("Yw22/BlobCtrl", 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
Improve metadata and add paper link
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
pipeline_tag: image-to-image
|
| 6 |
library_name: diffusers
|
| 7 |
-
|
| 8 |
-
|
| 9 |
---
|
| 10 |
|
| 11 |
# BlobCtrl
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- stable-diffusion-v1-5/stable-diffusion-v1-5
|
| 4 |
language:
|
| 5 |
- en
|
|
|
|
| 6 |
library_name: diffusers
|
| 7 |
+
license: other
|
| 8 |
+
pipeline_tag: image-to-image
|
| 9 |
---
|
| 10 |
|
| 11 |
# BlobCtrl
|