Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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()
|