Spaces:
Sleeping
Sleeping
update
Browse files
app.py
CHANGED
@@ -150,8 +150,7 @@ def calculate_order_by_first_substring(selected_models):
|
|
150 |
lambda x: x["parsed_judge_response"].eq(1).all()
|
151 |
)
|
152 |
|
153 |
-
|
154 |
-
fsm_ids = query_ids_df.fsm_id.unique()
|
155 |
|
156 |
text_only = all_data[all_data["Model Type"] == "Text Only"]
|
157 |
text_only_filtered = text_only[text_only["fsm_id"].isin(fsm_ids)]
|
@@ -169,6 +168,9 @@ def calculate_order_by_first_substring(selected_models):
|
|
169 |
)
|
170 |
text_only_filtered.sort_values("Accuracy", ascending=False, inplace=True)
|
171 |
|
|
|
|
|
|
|
172 |
number_of_queries = len(query_ids)
|
173 |
number_of_fsms = len(fsm_ids)
|
174 |
|
|
|
150 |
lambda x: x["parsed_judge_response"].eq(1).all()
|
151 |
)
|
152 |
|
153 |
+
|
|
|
154 |
|
155 |
text_only = all_data[all_data["Model Type"] == "Text Only"]
|
156 |
text_only_filtered = text_only[text_only["fsm_id"].isin(fsm_ids)]
|
|
|
168 |
)
|
169 |
text_only_filtered.sort_values("Accuracy", ascending=False, inplace=True)
|
170 |
|
171 |
+
query_ids = text_only_filtered.query_id.unique()
|
172 |
+
fsm_ids = text_only_filtered.fsm_id.unique()
|
173 |
+
|
174 |
number_of_queries = len(query_ids)
|
175 |
number_of_fsms = len(fsm_ids)
|
176 |
|