samedii commited on
Commit
61b8735
·
1 Parent(s): 0b594f1

doc: update model link

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -38,6 +38,8 @@ If you want to support us or check out our other pixel art models, you can find
38
  - Use a VAE with fixed fp16 support: https://huggingface.co/madebyollin/sdxl-vae-fp16-fix
39
  - Do not use refiner
40
 
 
 
41
  ### Diffusers
42
 
43
  ```python
@@ -47,7 +49,7 @@ import torch
47
  pipe = DiffusionPipeline.from_pretrained(
48
  "stabilityai/stable-diffusion-xl-base-1.0",
49
  torch_dtype=torch.float16,
50
- unet=UNet2DConditionModel.from_pretrained("pixel-party-v1.0", torch_dtype=torch.float16),
51
  use_safetensors=True,
52
  variant="fp16",
53
  )
 
38
  - Use a VAE with fixed fp16 support: https://huggingface.co/madebyollin/sdxl-vae-fp16-fix
39
  - Do not use refiner
40
 
41
+ Currently supports diffusers and should also support ComfyUI. Automatic is not yet working as it seems to require conversion.
42
+
43
  ### Diffusers
44
 
45
  ```python
 
49
  pipe = DiffusionPipeline.from_pretrained(
50
  "stabilityai/stable-diffusion-xl-base-1.0",
51
  torch_dtype=torch.float16,
52
+ unet=UNet2DConditionModel.from_pretrained("pixelparty/pixel-party-xl", torch_dtype=torch.float16),
53
  use_safetensors=True,
54
  variant="fp16",
55
  )