Shane
commited on
Commit
•
ca662db
1
Parent(s):
908984c
made chagnes to UI
Browse files- app.py +2 -2
- src/css.py +1 -1
app.py
CHANGED
@@ -88,9 +88,9 @@ total_models = len(regex_table(href_data_greedy.copy(), "", "Average", style=Fal
|
|
88 |
with gr.Blocks(css=custom_css) as app:
|
89 |
# create tabs for the app, moving the current table to one titled "rewardbench" and the benchmark_text to a tab called "About"
|
90 |
with gr.Row():
|
91 |
-
with gr.Column(scale=
|
92 |
gr.Markdown(TOP_TEXT.format(str(total_models)))
|
93 |
-
with gr.Column(scale=
|
94 |
# search = gr.Textbox(label="Model Search (delimit with , )", placeholder="Regex search for a model")
|
95 |
# filter_button = gr.Checkbox(label="Include AI2 training runs (or type ai2 above).", interactive=True)
|
96 |
# img = gr.Image(value="https://private-user-images.githubusercontent.com/10695622/310698241-24ed272a-0844-451f-b414-fde57478703e.png", width=500)
|
|
|
88 |
with gr.Blocks(css=custom_css) as app:
|
89 |
# create tabs for the app, moving the current table to one titled "rewardbench" and the benchmark_text to a tab called "About"
|
90 |
with gr.Row():
|
91 |
+
with gr.Column(scale=8):
|
92 |
gr.Markdown(TOP_TEXT.format(str(total_models)))
|
93 |
+
with gr.Column(scale=2):
|
94 |
# search = gr.Textbox(label="Model Search (delimit with , )", placeholder="Regex search for a model")
|
95 |
# filter_button = gr.Checkbox(label="Include AI2 training runs (or type ai2 above).", interactive=True)
|
96 |
# img = gr.Image(value="https://private-user-images.githubusercontent.com/10695622/310698241-24ed272a-0844-451f-b414-fde57478703e.png", width=500)
|
src/css.py
CHANGED
@@ -5,7 +5,7 @@ custom_css = """
|
|
5 |
max-width: 95%;
|
6 |
}
|
7 |
|
8 |
-
#
|
9 |
width: 25% !important; /* Adjust width as needed */
|
10 |
}
|
11 |
|
|
|
5 |
max-width: 95%;
|
6 |
}
|
7 |
|
8 |
+
#category_selector {
|
9 |
width: 25% !important; /* Adjust width as needed */
|
10 |
}
|
11 |
|