Skip to content

Commit 8e3daad

Browse files
committed
fix
Signed-off-by: SumanthRH <[email protected]>
1 parent c236fd1 commit 8e3daad

File tree

1 file changed

+1
-1
lines changed
  • skythought/skythought_evals/tasks

1 file changed

+1
-1
lines changed

skythought/skythought_evals/tasks/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def process_remaining_data(self, train_data, id_to_results: dict):
102102
return [
103103
row.to_dict()
104104
for _, row in train_data.iterrows()
105-
if int(row["_index"]) not in id_to_results
105+
if str(row["_index"]) not in id_to_results
106106
]
107107

108108

0 commit comments

Comments
 (0)