Skip to content

Commit

Permalink
Multiply comet score by 100 in online mode (#868)
Browse files Browse the repository at this point in the history
Co-authored-by: Evgeny Pavlov <[email protected]>
  • Loading branch information
vrigal and eu9ene authored Oct 1, 2024
1 parent c0a9585 commit d1d1efc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tracking/translations_parser/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ def metric_from_tc_context(chrf: float, bleu: float, comet: float):
task = queue.task(task_id)
parsed = parse_task_label(task["tags"]["label"])

# Multiply comet metric by 100 to match other metrics percentage style
comet *= 100

return Metric(
importer=parsed.importer,
dataset=parsed.dataset,
Expand Down

0 comments on commit d1d1efc

Please sign in to comment.