Spaces:
Running
Running
BenchmarkBot
commited on
Commit
ยท
b1a20c2
1
Parent(s):
c1efc37
update sorting
Browse files
app.py
CHANGED
@@ -66,8 +66,8 @@ NO_DUPLICATES_COLUMNS = [
|
|
66 |
"weight_class",
|
67 |
"model_type",
|
68 |
]
|
69 |
-
SORTING_COLUMN = ["best_score"]
|
70 |
-
SORTING_ASCENDING = [False]
|
71 |
|
72 |
llm_perf_dataset_repo = load_dataset_repo(LLM_PERF_DATASET_REPO, OPTIMUM_TOKEN)
|
73 |
|
@@ -376,4 +376,4 @@ scheduler.add_job(
|
|
376 |
scheduler.start()
|
377 |
|
378 |
# Launch demo
|
379 |
-
demo.queue(concurrency_count=10).launch()
|
|
|
66 |
"weight_class",
|
67 |
"model_type",
|
68 |
]
|
69 |
+
SORTING_COLUMN = ["best_score", "generate.latency(s)", "generate.peak_memory(MB)"]
|
70 |
+
SORTING_ASCENDING = [False, True, True]
|
71 |
|
72 |
llm_perf_dataset_repo = load_dataset_repo(LLM_PERF_DATASET_REPO, OPTIMUM_TOKEN)
|
73 |
|
|
|
376 |
scheduler.start()
|
377 |
|
378 |
# Launch demo
|
379 |
+
demo.queue(concurrency_count=10).launch(share=True)
|