Skip to content

Commit

Permalink
categorical score for llm as judge
Browse files Browse the repository at this point in the history
  • Loading branch information
yanxi0830 committed Nov 15, 2024
1 parent 0850ad6 commit 788411b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async def score_row(
for regex in rating_regexes:
match = re.search(regex, content)
if match:
judge_rating = int(match.group(1))
judge_rating = match.group(1)
break

return {
Expand Down

0 comments on commit 788411b

Please sign in to comment.