Spaces:
Running
Running
BenchmarkBot
commited on
Commit
β’
bf0a261
1
Parent(s):
6bc8c31
search in lower case
Browse files
app.py
CHANGED
@@ -74,7 +74,7 @@ def submit_query(text, backends, datatypes, threshold, raw_df):
|
|
74 |
# raw_df["Average H4 Score β¬οΈ"] = raw_df["Average H4 Score β¬οΈ"].apply(
|
75 |
# extract_score_from_clickable)
|
76 |
filtered_df = raw_df[
|
77 |
-
raw_df["Model π€"].str.contains(text) &
|
78 |
raw_df["Backend π"].isin(backends) &
|
79 |
raw_df["Datatype π₯"].isin(datatypes) &
|
80 |
(raw_df["Average H4 Score β¬οΈ"] >= threshold)
|
|
|
74 |
# raw_df["Average H4 Score β¬οΈ"] = raw_df["Average H4 Score β¬οΈ"].apply(
|
75 |
# extract_score_from_clickable)
|
76 |
filtered_df = raw_df[
|
77 |
+
raw_df["Model π€"].str.lower().str.contains(text.lower()) &
|
78 |
raw_df["Backend π"].isin(backends) &
|
79 |
raw_df["Datatype π₯"].isin(datatypes) &
|
80 |
(raw_df["Average H4 Score β¬οΈ"] >= threshold)
|