multimodalart HF staff commited on
Commit
eb97cd1
·
verified ·
1 Parent(s): 5f8a996

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -27,4 +27,6 @@ with gr.Blocks() as demo:
27
 
28
  @spaces.GPU
29
  def run_hidiffusion(prompt, negative_prompt):
30
- return pipe(prompt, guidance_scale=7.5, height=1024, width=1024, eta=1.0, negative_prompt=negative_prompt).images[0]
 
 
 
27
 
28
  @spaces.GPU
29
  def run_hidiffusion(prompt, negative_prompt):
30
+ return pipe(prompt, guidance_scale=7.5, height=1024, width=1024, eta=1.0, negative_prompt=negative_prompt).images[0]
31
+
32
+ demo.launch()