File size: 478 Bytes
a2b4466
 
b866640
 
 
 
 
 
 
 
a2b4466
 
b866640
a2b4466
b866640
 
 
a2b4466
b866640
 
 
 
 
 
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/ControlNet-recolorXL)

```
from diffusers import ControlNetModel
import torch

controlnet = ControlNetModel.from_pretrained(
    "r3gm/controlnet-recolor-anime-sdxl-fp16",
    torch_dtype=torch.float16,
    variant="fp16"
)
```