Spaces:
Sleeping
Sleeping
Commit
·
1900305
1
Parent(s):
fdccb4e
Move the HDI input below the dropdowns
Browse files- app.py +2 -2
- requirements.txt +1 -0
app.py
CHANGED
@@ -231,13 +231,13 @@ def layout(tab):
|
|
231 |
|
232 |
''')
|
233 |
with gr.Column():
|
234 |
-
ci = gr.Number(value=0.95, minimum=0, maximum=1, step=1e-2)
|
235 |
-
|
236 |
models = df['model'].unique()
|
237 |
choices = sorted(models, key=lambda x: x.lower())
|
238 |
partial = ft.partial(gr.Dropdown, choices=choices)
|
239 |
drops = (partial(label=f'Model {x}') for x in range(1, 3))
|
240 |
|
|
|
|
|
241 |
inputs = [
|
242 |
*drops,
|
243 |
ci,
|
|
|
231 |
|
232 |
''')
|
233 |
with gr.Column():
|
|
|
|
|
234 |
models = df['model'].unique()
|
235 |
choices = sorted(models, key=lambda x: x.lower())
|
236 |
partial = ft.partial(gr.Dropdown, choices=choices)
|
237 |
drops = (partial(label=f'Model {x}') for x in range(1, 3))
|
238 |
|
239 |
+
ci = gr.Number(value=0.95, minimum=0, maximum=1, step=1e-2)
|
240 |
+
|
241 |
inputs = [
|
242 |
*drops,
|
243 |
ci,
|
requirements.txt
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
datasets
|
2 |
gradio
|
3 |
matplotlib
|
|
|
1 |
+
arviz
|
2 |
datasets
|
3 |
gradio
|
4 |
matplotlib
|