Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
dc30bc9
1
Parent(s):
8780bfc
Update app.py
Browse files
app.py
CHANGED
@@ -84,8 +84,8 @@ with gr.Blocks(theme=theme) as demo:
|
|
84 |
with gr.Row():
|
85 |
run_button = gr.Button('Fit the Curve')
|
86 |
with gr.Row():
|
87 |
-
plot_default = gr.Plot('Default Initialization')
|
88 |
-
plot_chosen = gr.Plot('Chosen Initialization')
|
89 |
run_button.click(fn=curve_fit, inputs=[size, alpha, lam], outputs=[plot_default, plot_chosen])
|
90 |
|
91 |
demo.launch()
|
|
|
84 |
with gr.Row():
|
85 |
run_button = gr.Button('Fit the Curve')
|
86 |
with gr.Row():
|
87 |
+
plot_default = gr.Plot(label = 'Default Initialization')
|
88 |
+
plot_chosen = gr.Plot(label = 'Chosen Initialization')
|
89 |
run_button.click(fn=curve_fit, inputs=[size, alpha, lam], outputs=[plot_default, plot_chosen])
|
90 |
|
91 |
demo.launch()
|