Spaces:
Running
Running
BenchmarkBot
commited on
Commit
ยท
5919d6a
1
Parent(s):
2773294
bug fix
Browse files
app.py
CHANGED
@@ -35,7 +35,7 @@ def get_benchmark_df():
|
|
35 |
"./llm-perf-dataset/reports/cuda_1_100/inference_report.csv")
|
36 |
|
37 |
# remove quantized models
|
38 |
-
df = df[df["backend.quantization"].
|
39 |
|
40 |
# preprocess
|
41 |
df["model"] = df["model"].apply(make_clickable_model)
|
|
|
35 |
"./llm-perf-dataset/reports/cuda_1_100/inference_report.csv")
|
36 |
|
37 |
# remove quantized models
|
38 |
+
df = df[df["backend.quantization"].isnull()]
|
39 |
|
40 |
# preprocess
|
41 |
df["model"] = df["model"].apply(make_clickable_model)
|