Skip to content

Commit

Permalink
Fix incorrect package name in WildBenchAnnotator
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanmai committed Dec 20, 2024
1 parent 6871ecf commit 63bbc27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helm/benchmark/annotation/wildbench_annotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class WildBenchAnnotator(Annotator):

def __init__(self, auto_client: AutoClient):
self._auto_client = auto_client
template_path = files("src.helm.benchmark.annotation.wildbench").joinpath("eval_template.score.v2.md")
template_path = files("helm.benchmark.annotation.wildbench").joinpath("eval_template.score.v2.md")
with template_path.open("r") as f:
self._score_template = f.read()
self._pattern = re.compile(
Expand Down

0 comments on commit 63bbc27

Please sign in to comment.