bobber commited on
Commit
7488de9
·
verified ·
1 Parent(s): da70f6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -3,8 +3,12 @@ import spaces
3
 
4
  import torch
5
  from diffusers import StableDiffusionXLPipeline
 
6
 
7
- pipeline = StableDiffusionXLPipeline.from_pretrained("bobber/bigasp2").to("cuda")
 
 
 
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):