Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -3,8 +3,12 @@ import spaces
|
|
3 |
|
4 |
import torch
|
5 |
from diffusers import StableDiffusionXLPipeline
|
|
|
6 |
|
7 |
-
|
|
|
|
|
|
|
8 |
|
9 |
@spaces.GPU
|
10 |
def generate(prompt, negative_prompt, width, height, sample_steps, guidance_scale):
|
|
|
3 |
|
4 |
import torch
|
5 |
from diffusers import StableDiffusionXLPipeline
|
6 |
+
from diffusers import AutoencoderTiny, AutoencoderKL
|
7 |
|
8 |
+
#taef1 = AutoencoderTiny.from_pretrained("madebyollin/taef1", torch_dtype=dtype).to(device)
|
9 |
+
good_vae = AutoencoderKL.from_pretrained("black-forest-labs/FLUX.1-dev", subfolder="vae", torch_dtype=dtype).to(device)
|
10 |
+
dtype = torch.bfloat16
|
11 |
+
pipeline = StableDiffusionXLPipeline.from_pretrained("bobber/bigasp2", torch_dtype=dtype, vae=good_vae).to("cuda")
|
12 |
|
13 |
@spaces.GPU
|
14 |
def generate(prompt, negative_prompt, width, height, sample_steps, guidance_scale):
|