OzzyGT HF staff commited on
Commit
a85e8fc
1 Parent(s): cd8edbc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -1
README.md CHANGED
@@ -7,4 +7,10 @@ tags:
7
  - stable-diffusion-xl
8
  - image-to-image
9
  ---
10
- This is just a float16 copy of https://huggingface.co/destitech/controlnet-inpaint-dreamer-sdxl with the config file and filename to load it with diffusers.
 
 
 
 
 
 
 
7
  - stable-diffusion-xl
8
  - image-to-image
9
  ---
10
+ This is just a half precision copy of https://huggingface.co/destitech/controlnet-inpaint-dreamer-sdxl with the config file and correct filename to load it with diffusers.
11
+
12
+ ```py
13
+ controlnet = ControlNetModel.from_pretrained(
14
+ "OzzyGT/controlnet-inpaint-dreamer-sdxl", torch_dtype=torch.float16, variant="fp16"
15
+ )
16
+ ```