| library_name: diffusers | |
| pipeline_tag: image-feature-extraction | |
| tags: | |
| - controlnet | |
| - stable-diffusion-xl | |
| - stable-diffusion-xl-diffusers | |
| - text-to-image | |
| - diffusers | |
| [Origin model](https://huggingface.co/Laxhar/noob_openpose/blob/main/openpose_pre.safetensors) | |
| ``` | |
| from diffusers import ControlNetModel | |
| import torch | |
| controlnet = ControlNetModel.from_pretrained( | |
| "r3gm/controlnet-noobai-openpose-sdxl-fp16", | |
| torch_dtype=torch.float16, | |
| variant="fp16" | |
| ) | |
| ``` |