doc: update model link
Browse files
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-
|
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 |
)
|