Update app.py
Browse files
app.py
CHANGED
@@ -243,8 +243,8 @@ with gradio.Blocks() as demo:
|
|
243 |
length = gradio.Slider(label="Length", interactive=True, minimum=3.0, maximum=10.0, value=6.5)
|
244 |
|
245 |
radio.change(fn=change_textbox, inputs=radio, outputs=[height, width, diameter, length])
|
246 |
-
with gradio.Accordion("Geometry from Dataset"):
|
247 |
-
num = gradio.Number(42, label="data index"
|
248 |
btn1 = gradio.Button("Select")
|
249 |
|
250 |
with gradio.Column():
|
|
|
243 |
length = gradio.Slider(label="Length", interactive=True, minimum=3.0, maximum=10.0, value=6.5)
|
244 |
|
245 |
radio.change(fn=change_textbox, inputs=radio, outputs=[height, width, diameter, length])
|
246 |
+
with gradio.Accordion("Geometry from Dataset", open=False):
|
247 |
+
num = gradio.Number(42, label="data index")
|
248 |
btn1 = gradio.Button("Select")
|
249 |
|
250 |
with gradio.Column():
|