Profakerr commited on
Commit
7c25d4e
·
verified ·
1 Parent(s): 2b65d20

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ pipe = StableDiffusionXLFillPipeline.from_pretrained(
43
  variant="fp16",
44
  ).to("cuda")
45
 
46
- pipe.scheduler = TCDScheduler.from_config(pipe.scheduler.config,algorithm_type="dpmsolver++",use_karras_sigmas=True)
47
 
48
  device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
49
 
 
43
  variant="fp16",
44
  ).to("cuda")
45
 
46
+ pipe.scheduler = TCDScheduler.from_config(pipe.scheduler.config)
47
 
48
  device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
49