fffiloni commited on
Commit
bb9c1eb
·
1 Parent(s): 9995ce4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,7 +19,7 @@ vae = AutoencoderKL.from_pretrained("madebyollin/sdxl-vae-fp16-fix", torch_dtype
19
  pipe = DiffusionPipeline.from_pretrained(
20
  "stabilityai/stable-diffusion-xl-base-1.0",
21
  vae=vae, torch_dtype=torch.float16, variant="fp16",
22
- #use_safetensors=True
23
  )
24
 
25
  device="cuda" if torch.cuda.is_available() else "cpu"
@@ -70,7 +70,7 @@ def load_model(custom_model):
70
  return gr.update(choices=sfts_available_files, value=sfts_available_files[0], visible=True), gr.update(value=instance_prompt, visible=True)
71
 
72
 
73
- @spaces.GPU
74
  def infer (custom_model, weight_name, prompt, inf_steps, guidance_scale, seed, lora_weight, progress=gr.Progress(track_tqdm=True)):
75
 
76
  if weight_name == "NO SAFETENSORS FILE":
 
19
  pipe = DiffusionPipeline.from_pretrained(
20
  "stabilityai/stable-diffusion-xl-base-1.0",
21
  vae=vae, torch_dtype=torch.float16, variant="fp16",
22
+ use_safetensors=True
23
  )
24
 
25
  device="cuda" if torch.cuda.is_available() else "cpu"
 
70
  return gr.update(choices=sfts_available_files, value=sfts_available_files[0], visible=True), gr.update(value=instance_prompt, visible=True)
71
 
72
 
73
+
74
  def infer (custom_model, weight_name, prompt, inf_steps, guidance_scale, seed, lora_weight, progress=gr.Progress(track_tqdm=True)):
75
 
76
  if weight_name == "NO SAFETENSORS FILE":