Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
feat: add the toggle checkbox
Browse files
app.py
CHANGED
@@ -157,6 +157,12 @@ with demo:
|
|
157 |
value=False,
|
158 |
info="The anonymous submissions might have invalid model information."
|
159 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
|
161 |
leaderboard_table = gr.components.Dataframe(
|
162 |
value=leaderboard_df_qa,
|
|
|
157 |
value=False,
|
158 |
info="The anonymous submissions might have invalid model information."
|
159 |
)
|
160 |
+
with gr.Row():
|
161 |
+
show_revision_and_timestamp = gr.Checkbox(
|
162 |
+
label="Show submission details",
|
163 |
+
value=False,
|
164 |
+
info="Show the revision and timestamp information of submissions"
|
165 |
+
)
|
166 |
|
167 |
leaderboard_table = gr.components.Dataframe(
|
168 |
value=leaderboard_df_qa,
|