Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions judges/classifiers/correctness.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ def judge(
f"""
You will be given a Question, a Provided Answer and a Reference Answer. Judge whether the Provided Answer is correct by comparing it to the Reference Answer. Differently formatted dates, people with missing middle names, and alternative spellings should all be considered the same. If the Provided Answer is correct say exactly "True", otherwise say "False".

Question: {{input}}
Provided Answer: {{output}}
Reference Answer:{{expected}}
Question: {input}
Provided Answer: {output}
Reference Answer:{expected}
Correct:
"""
)
Expand Down
Loading