File size: 486 Bytes
63c61e4
 
67ec3f5
 
 
 
 
 
 
 
63c61e4
 
67ec3f5
63c61e4
67ec3f5
 
 
63c61e4
67ec3f5
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
library_name: diffusers
pipeline_tag: image-feature-extraction
tags:
- controlnet
- stable-diffusion-xl
- stable-diffusion-xl-diffusers
- text-to-image
- diffusers
license: openrail++
---

[Origin model](https://huggingface.co/monster-labs/control_v1p_sdxl_qrcode_monster)

```py
from diffusers import ControlNetModel
import torch

controlnet = ControlNetModel.from_pretrained(
    "r3gm/control_v1p_sdxl_qrcode_monster_fp16",
    torch_dtype=torch.float16,
    variant="fp16"
)
```