Spaces:
Runtime error
Runtime error
Logan Zoellner
commited on
Commit
·
e4e8a26
1
Parent(s):
76af870
move button up
Browse files
app.py
CHANGED
|
@@ -39,10 +39,12 @@ with demo:
|
|
| 39 |
persistence=gr.Number(value=0.5, label='persistence')
|
| 40 |
|
| 41 |
with gr.Row():
|
| 42 |
-
|
| 43 |
|
| 44 |
with gr.Row():
|
| 45 |
-
|
|
|
|
|
|
|
| 46 |
|
| 47 |
b0.click(create_fractal_noise,inputs=[input_seed,input_size,res,n_octaves,persistence],outputs=[output_image])
|
| 48 |
#examples=examples
|
|
|
|
| 39 |
persistence=gr.Number(value=0.5, label='persistence')
|
| 40 |
|
| 41 |
with gr.Row():
|
| 42 |
+
b0 = gr.Button("Submit")
|
| 43 |
|
| 44 |
with gr.Row():
|
| 45 |
+
output_image = gr.outputs.Image(type="filepath", label='Output')
|
| 46 |
+
|
| 47 |
+
|
| 48 |
|
| 49 |
b0.click(create_fractal_noise,inputs=[input_seed,input_size,res,n_octaves,persistence],outputs=[output_image])
|
| 50 |
#examples=examples
|