Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -298,13 +298,16 @@ with gradio.Blocks() as demo:
|
|
298 |
|
299 |
|
300 |
with gradio.Row():
|
301 |
-
with gradio.Column(min_width=
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
|
|
|
|
|
|
308 |
t2 = gradio.Dropdown(endpoint_options, label="Type 2", value="hot_dog_box")
|
309 |
d2 = gradio.Dropdown(density_options, label="Density 2", value="1.00")
|
310 |
th2 = gradio.Dropdown(thickness_options, label="Thickness 2", value="2")
|
|
|
298 |
|
299 |
|
300 |
with gradio.Row():
|
301 |
+
with gradio.Column(min_width=500):
|
302 |
+
gradio.Markdown("What would you like the first endpoint of the transition region to look like?")
|
303 |
+
with gradio.Row():
|
304 |
+
with gradio.Column(min_width=250):
|
305 |
+
t1 = gradio.Dropdown(endpoint_options, label="Type 1", value="hamburger_box")
|
306 |
+
d1 = gradio.Dropdown(density_options, label="Density 1", value="1.00")
|
307 |
+
th1 = gradio.Dropdown(thickness_options, label="Thickness 1", value="2")
|
308 |
+
with gradio.Column(min_width=250):
|
309 |
+
img1 = gradio.Image(label="Endpoint 1", value=generate_unit_cell("hamburger_box", "1.00", "2"))
|
310 |
+
with gradio.Column(min_width=250):
|
311 |
t2 = gradio.Dropdown(endpoint_options, label="Type 2", value="hot_dog_box")
|
312 |
d2 = gradio.Dropdown(density_options, label="Density 2", value="1.00")
|
313 |
th2 = gradio.Dropdown(thickness_options, label="Thickness 2", value="2")
|