Spaces:
Sleeping
Sleeping
RuchitRawal
commited on
Commit
•
322b7f1
1
Parent(s):
5c68808
updated images
Browse files- __pycache__/desc.cpython-311.pyc +0 -0
- __pycache__/lb_info.cpython-311.pyc +0 -0
- app.py +2 -2
__pycache__/desc.cpython-311.pyc
ADDED
Binary file (1.3 kB). View file
|
|
__pycache__/lb_info.cpython-311.pyc
ADDED
Binary file (3.18 kB). View file
|
|
app.py
CHANGED
@@ -29,7 +29,7 @@ def filter_df(fields):
|
|
29 |
return table[headers]
|
30 |
|
31 |
|
32 |
-
with gr.Blocks() as demo:
|
33 |
struct = load_results()
|
34 |
results = struct
|
35 |
|
@@ -37,7 +37,7 @@ with gr.Blocks() as demo:
|
|
37 |
table, check_box = BUILD_L1_DF(results)
|
38 |
|
39 |
N_MODELS = len(table)
|
40 |
-
UP_TS = "
|
41 |
|
42 |
gr.Markdown(LEADERBOARD_INTRODUCTION.format(N_MODELS, UP_TS))
|
43 |
|
|
|
29 |
return table[headers]
|
30 |
|
31 |
|
32 |
+
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
33 |
struct = load_results()
|
34 |
results = struct
|
35 |
|
|
|
37 |
table, check_box = BUILD_L1_DF(results)
|
38 |
|
39 |
N_MODELS = len(table)
|
40 |
+
UP_TS = "20th October 2024" # Replace with actual timestamp
|
41 |
|
42 |
gr.Markdown(LEADERBOARD_INTRODUCTION.format(N_MODELS, UP_TS))
|
43 |
|