File size: 487 Bytes
298fe9d
 
0f45e7a
 
 
 
 
 
 
 
298fe9d
 
0f45e7a
298fe9d
0f45e7a
 
 
298fe9d
0f45e7a
 
 
 
 
 
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
license: creativeml-openrail-m
tags:
- controlnet
- stable-diffusion-xl
- stable-diffusion-xl-diffusers
- text-to-image
- diffusers
---

[Origin model](https://huggingface.co./kataragi/controlnetXL-rough-coating)

```
from diffusers import ControlNetModel
import torch

controlnet = ControlNetModel.from_pretrained(
    "r3gm/controlnet-rough-coating-v1-sdxl-fp16",
    torch_dtype=torch.float16,
    variant="fp16"
)
```