Instructions to use carsonkatri/stable-diffusion-2-depth-diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use carsonkatri/stable-diffusion-2-depth-diffusers 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("carsonkatri/stable-diffusion-2-depth-diffusers", 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
| license: openrail | |
| This model is converted from [stable-diffusion-2-depth](https://huggingface.co/stabilityai/stable-diffusion-2-depth) using the [conversion script](https://github.com/huggingface/diffusers/blob/main/scripts/convert_original_stable_diffusion_to_diffusers.py) from [🤗 Diffusers](https://github.com/huggingface/diffusers). | |
| You can use it with the pipeline here: https://gist.github.com/carson-katri/f51532b9d5162928d5cacbaee081a799 | |
| ```python | |
| # class StableDiffusionDepthPipeline: ... | |
| from PIL import Image | |
| model_id = "carsonkatri/stable-diffusion-2-depth-diffusers" | |
| # Use the pipeline from this GH Gist: https://gist.github.com/carson-katri/f51532b9d5162928d5cacbaee081a799 | |
| pipe = StableDiffusionDepthPipeline.from_pretrained(model_id) | |
| pipe = pipe.to("cuda") | |
| image = pipe( | |
| prompt="a photo of a stormtrooper from star wars", | |
| depth_image=Image.open('depth.png'), # Black and white depth map | |
| image=Image.open("emad.png"), # Optional init image and strength. | |
| width=768, | |
| height=512 | |
| ).images[0] | |
| image.save('stormtrooper.png') | |
| ``` |