Gregor Betz
commited on
Commit
•
5e531ec
1
Parent(s):
4b4ab15
ui descriptions
Browse files
app.py
CHANGED
@@ -113,9 +113,9 @@ with demo:
|
|
113 |
gr.HTML(TITLE)
|
114 |
gr.Markdown(INTRODUCTION_TEXT)
|
115 |
with gr.Row():
|
116 |
-
selected_model = gr.Dropdown(list(df_cot_err.model.unique()), value="allenai/tulu-2-70b", label="Model", scale=2)
|
117 |
regex_model_filter = gr.Textbox(".*", label="Regex", info="to filter models shown in plots", scale=2)
|
118 |
-
plotly_mode = gr.Radio(["dark","light"], value="light", label="
|
119 |
submit = gr.Button("Update", scale=1)
|
120 |
table = gr.DataFrame()
|
121 |
plot = gr.Plot(label="evals")
|
|
|
113 |
gr.HTML(TITLE)
|
114 |
gr.Markdown(INTRODUCTION_TEXT)
|
115 |
with gr.Row():
|
116 |
+
selected_model = gr.Dropdown(list(df_cot_err.model.unique()), value="allenai/tulu-2-70b", label="Model", info="with performance details below", scale=2)
|
117 |
regex_model_filter = gr.Textbox(".*", label="Regex", info="to filter models shown in plots", scale=2)
|
118 |
+
plotly_mode = gr.Radio(["dark","light"], value="light", label="Theme", info="of plots", scale=1)
|
119 |
submit = gr.Button("Update", scale=1)
|
120 |
table = gr.DataFrame()
|
121 |
plot = gr.Plot(label="evals")
|