Spaces:
Running
Running
BenchmarkBot
commited on
Commit
β’
8c85e39
1
Parent(s):
b3a1bf0
fix bug
Browse files
app.py
CHANGED
@@ -117,7 +117,7 @@ def filter_query(text, backends, datatypes, threshold, benchmark="1xA100-80GB"):
|
|
117 |
filtered_df = raw_df[
|
118 |
raw_df["model"].str.lower().str.contains(text.lower()) &
|
119 |
raw_df["backend.name"].isin(backends) &
|
120 |
-
raw_df["
|
121 |
(raw_df["h4_score"] >= threshold)
|
122 |
]
|
123 |
|
|
|
117 |
filtered_df = raw_df[
|
118 |
raw_df["model"].str.lower().str.contains(text.lower()) &
|
119 |
raw_df["backend.name"].isin(backends) &
|
120 |
+
raw_df["backend.torch_dtype"].isin(datatypes) &
|
121 |
(raw_df["h4_score"] >= threshold)
|
122 |
]
|
123 |
|