BenchmarkBot commited on
Commit
5919d6a
β€’
1 Parent(s): 2773294
Files changed (1) hide show
  1. app.py +1 -1
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"].notna()]
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)