mm-cot
mm-cot copied to clipboard
typo in utils.prompt line 104 and 106
Original code: elif output_format == 'AL': output = f"Answer: The answer is {answer}. BECAUSE: {solution}" elif output_format == 'AE': output = f"Answer: The answer is {answer}. BECAUSE: {lecture}"
Shall be modified to: elif output_format == 'AL': output = f"Answer: The answer is {answer}. BECAUSE: {lecture}" elif output_format == 'AE': output = f"Answer: The answer is {answer}. BECAUSE: {solution}"
If L means {lecture} and E means {solution}
Thanks for the revision! That's cool.