devingulliver
commited on
Commit
β’
9b11b04
1
Parent(s):
06e8c2c
prettify Textboxes
Browse files
app.py
CHANGED
@@ -53,7 +53,7 @@ with gr.Blocks() as demo:
|
|
53 |
with gr.Tab("π
LLM Benchmark"):
|
54 |
with gr.Row():
|
55 |
with gr.Column():
|
56 |
-
namefilter = gr.Textbox(max_lines=1,
|
57 |
typefilter = gr.CheckboxGroup(label="Filter by model type", choices=list(data["Type"].unique()), value=[n for n in data["Type"].unique() if n not in ["Pending"]])
|
58 |
|
59 |
with gr.Column():
|
@@ -84,7 +84,7 @@ with gr.Blocks() as demo:
|
|
84 |
with gr.Tab("π Submit here!"):
|
85 |
with gr.Group():
|
86 |
with gr.Row():
|
87 |
-
model_name = gr.Textbox(max_lines=1,
|
88 |
submit = gr.Button("Submit", variant="primary", scale=0)
|
89 |
|
90 |
output = gr.Markdown("Enter a public HF repo id, then hit Submit to add it to the evaluation queue.")
|
|
|
53 |
with gr.Tab("π
LLM Benchmark"):
|
54 |
with gr.Row():
|
55 |
with gr.Column():
|
56 |
+
namefilter = gr.Textbox(max_lines=1, placeholder="Search by model name and hit Enter...", hide_label=True)
|
57 |
typefilter = gr.CheckboxGroup(label="Filter by model type", choices=list(data["Type"].unique()), value=[n for n in data["Type"].unique() if n not in ["Pending"]])
|
58 |
|
59 |
with gr.Column():
|
|
|
84 |
with gr.Tab("π Submit here!"):
|
85 |
with gr.Group():
|
86 |
with gr.Row():
|
87 |
+
model_name = gr.Textbox(max_lines=1, placeholder="Enter model name...", hide_label=True, scale=4)
|
88 |
submit = gr.Button("Submit", variant="primary", scale=0)
|
89 |
|
90 |
output = gr.Markdown("Enter a public HF repo id, then hit Submit to add it to the evaluation queue.")
|