Alex Birch
commited on
Commit
•
12b5b52
1
Parent(s):
696afbc
never shuffle lines
Browse files
README.md
CHANGED
@@ -117,7 +117,7 @@ So you _can_ skip the `vae` arg, and load the pipeline like this:
|
|
117 |
pipe: StableDiffusionPipeline = StableDiffusionPipeline.from_pretrained(
|
118 |
'Birchlabs/wd-1-5-beta3-unofficial',
|
119 |
torch_dtype=torch.float16,
|
120 |
-
variant='radiance'
|
121 |
)
|
122 |
```
|
123 |
|
@@ -129,7 +129,7 @@ vae: AutoencoderKL = AutoencoderKL.from_pretrained('hakurei/waifu-diffusion', su
|
|
129 |
pipe: StableDiffusionPipeline = StableDiffusionPipeline.from_pretrained(
|
130 |
'Birchlabs/wd-1-5-beta3-unofficial',
|
131 |
torch_dtype=torch.float16,
|
132 |
-
variant='radiance'
|
133 |
vae=vae,
|
134 |
)
|
135 |
```
|
|
|
117 |
pipe: StableDiffusionPipeline = StableDiffusionPipeline.from_pretrained(
|
118 |
'Birchlabs/wd-1-5-beta3-unofficial',
|
119 |
torch_dtype=torch.float16,
|
120 |
+
variant='radiance',
|
121 |
)
|
122 |
```
|
123 |
|
|
|
129 |
pipe: StableDiffusionPipeline = StableDiffusionPipeline.from_pretrained(
|
130 |
'Birchlabs/wd-1-5-beta3-unofficial',
|
131 |
torch_dtype=torch.float16,
|
132 |
+
variant='radiance',
|
133 |
vae=vae,
|
134 |
)
|
135 |
```
|