Instructions to use CrucibleAI/ControlNetMediaPipeFace with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use CrucibleAI/ControlNetMediaPipeFace with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("CrucibleAI/ControlNetMediaPipeFace") pipe = StableDiffusionControlNetPipeline.from_pretrained( "stabilityai/stable-diffusion-2-1-base", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
Add Diffusers model for SD 1.5.
#9
by JosephCatrambone - opened
This is a direct conversion from the full.ckpt. The config_sd15.json would normally conflict with config.json. Not sure how to keep both versions inside the same model. Talking with some folks at HF about it.
JosephCatrambone changed pull request status to merged