Spaces:
Running
Running
BenchmarkBot
commited on
Commit
Β·
fda0b51
1
Parent(s):
f41da95
fix
Browse files
app.py
CHANGED
@@ -108,9 +108,7 @@ def get_benchmark_table(bench_df):
|
|
108 |
bench_df.rename(columns=ALL_COLUMNS_MAPPING, inplace=True)
|
109 |
# transform
|
110 |
bench_df["Type π€"] = bench_df["Type π€"].apply(process_model_type)
|
111 |
-
bench_df["Class ποΈ"] = bench_df["Class ποΈ"].apply(
|
112 |
-
process_weight_class
|
113 |
-
)
|
114 |
bench_df["Best Scored Model π"] = bench_df["Best Scored Model π"].apply(
|
115 |
process_model_name
|
116 |
)
|
@@ -343,4 +341,3 @@ scheduler.start()
|
|
343 |
|
344 |
# Launch demo
|
345 |
demo.queue(concurrency_count=40).launch()
|
346 |
-
demo.queue(concurrency_count=40).launch()
|
|
|
108 |
bench_df.rename(columns=ALL_COLUMNS_MAPPING, inplace=True)
|
109 |
# transform
|
110 |
bench_df["Type π€"] = bench_df["Type π€"].apply(process_model_type)
|
111 |
+
bench_df["Class ποΈ"] = bench_df["Class ποΈ"].apply(process_weight_class)
|
|
|
|
|
112 |
bench_df["Best Scored Model π"] = bench_df["Best Scored Model π"].apply(
|
113 |
process_model_name
|
114 |
)
|
|
|
341 |
|
342 |
# Launch demo
|
343 |
demo.queue(concurrency_count=40).launch()
|
|