ccm commited on
Commit
94947c8
·
1 Parent(s): 663ab52
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -313,13 +313,13 @@ with gradio.Blocks() as demo:
313
  d1 = gradio.Dropdown(density_options, label="Density 1", value="1.00")
314
  th1 = gradio.Dropdown(thickness_options, label="Thickness 1", value="2")
315
  with gradio.Column(min_width=250):
316
- img1 = gradio.Image(label="Endpoint 1", value=)
317
  with gradio.Column(min_width=250):
318
  t2 = gradio.Dropdown(endpoint_options, label="Type 2", value="hot_dog_box")
319
  d2 = gradio.Dropdown(density_options, label="Density 2", value="1.00")
320
  th2 = gradio.Dropdown(thickness_options, label="Thickness 2", value="2")
321
  with gradio.Column(min_width=250):
322
- img2 = gradio.Image(label="Endpoint 2")
323
 
324
  lattice_inputs_1 = [t1, d1, th1]
325
  [x.change(fn=generate_unit_cell, inputs=lattice_inputs_1, outputs=[img1]) for x in lattice_inputs_1]
 
313
  d1 = gradio.Dropdown(density_options, label="Density 1", value="1.00")
314
  th1 = gradio.Dropdown(thickness_options, label="Thickness 1", value="2")
315
  with gradio.Column(min_width=250):
316
+ img1 = gradio.Image(label="Endpoint 1", value=generate_unit_cell("hamburger_box", "1.00", "2"))
317
  with gradio.Column(min_width=250):
318
  t2 = gradio.Dropdown(endpoint_options, label="Type 2", value="hot_dog_box")
319
  d2 = gradio.Dropdown(density_options, label="Density 2", value="1.00")
320
  th2 = gradio.Dropdown(thickness_options, label="Thickness 2", value="2")
321
  with gradio.Column(min_width=250):
322
+ img2 = gradio.Image(label="Endpoint 2", value=generate_unit_cell("hot_dog_box", "1.00", "2"))
323
 
324
  lattice_inputs_1 = [t1, d1, th1]
325
  [x.change(fn=generate_unit_cell, inputs=lattice_inputs_1, outputs=[img1]) for x in lattice_inputs_1]