Instructions to use Kunbyte/DRA-Ctrl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Kunbyte/DRA-Ctrl 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("Kunbyte/DRA-Ctrl", 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
add tags for better discoverability :) (#1)
Browse files- add tags for better discoverability :) (67d506d3a475c57eaf29d8bb76431e584ef547db)
Co-authored-by: Linoy Tsaban <linoyts@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
# Model Card for DRA-Ctrl
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- tencent/HunyuanVideo
|
| 5 |
+
pipeline_tag: image-to-image
|
| 6 |
+
library_name: diffusers
|
| 7 |
---
|
| 8 |
|
| 9 |
# Model Card for DRA-Ctrl
|