Spaces:
Runtime error
Runtime error
oops
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ from torch import autocast
|
|
4 |
from diffusers import StableDiffusionPipeline
|
5 |
|
6 |
model_id = "hakurei/waifu-diffusion"
|
7 |
-
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
8 |
pipe = pipe.to("cuda")
|
9 |
torch.backends.cudnn.benchmark = True
|
10 |
num_samples = 2
|
|
|
4 |
from diffusers import StableDiffusionPipeline
|
5 |
|
6 |
model_id = "hakurei/waifu-diffusion"
|
7 |
+
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16, revision='fp16')
|
8 |
pipe = pipe.to("cuda")
|
9 |
torch.backends.cudnn.benchmark = True
|
10 |
num_samples = 2
|