vilarin commited on
Commit
4f1116f
·
verified ·
1 Parent(s): 5e066df

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ vae = AutoencoderKL.from_pretrained(
37
  )
38
 
39
  # Ensure model and scheduler are initialized in GPU-enabled function
40
- pipe = StableDiffusionXLPipeline.from_pretrained(model, vae=vae, torch_dtype=torch.float16).to(device)
41
 
42
 
43
 
 
37
  )
38
 
39
  # Ensure model and scheduler are initialized in GPU-enabled function
40
+ pipe = StableDiffusionXLPipeline.from_pretrained(model, vae=vae).to(device)
41
 
42
 
43