Instructions to use radames/stable-diffusion-2-depth-img2img with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use radames/stable-diffusion-2-depth-img2img 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("radames/stable-diffusion-2-depth-img2img", 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
|
@@ -3,7 +3,6 @@ license: openrail++
|
|
| 3 |
tags:
|
| 4 |
- stable-diffusion
|
| 5 |
- image-to-image
|
| 6 |
-
inference: false
|
| 7 |
duplicated_from: stabilityai/stable-diffusion-2-depth
|
| 8 |
pipeline_tag: image-to-image
|
| 9 |
---
|
|
|
|
| 3 |
tags:
|
| 4 |
- stable-diffusion
|
| 5 |
- image-to-image
|
|
|
|
| 6 |
duplicated_from: stabilityai/stable-diffusion-2-depth
|
| 7 |
pipeline_tag: image-to-image
|
| 8 |
---
|