Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Safoora Yousefi committed Dec 18, 2024
1 parent 7791085 commit 57ab426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eureka_ml_insights/data_utils/aime_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AIMEExtractAnswer(DFTransformBase):
model_answer_column: str

def transform(self, df: pd.DataFrame) -> pd.DataFrame:
df[self.model_answer_column] = df[self.model_output_column].apply(self.parse_output_answerparse_output_answer)
df[self.model_answer_column] = df[self.model_output_column].apply(self.parse_output_answer)
return df

@staticmethod
Expand Down

0 comments on commit 57ab426

Please sign in to comment.