Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/olmo_eval/common/scorers/ifeval.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Scorer for IFBench / IFEval instruction-following evaluation.

Uses the ``ifbench`` package registry, which covers the original IFEval
(DEFAULT) verifiers, the OOD verifiers used by ``allenai/IFBench_test2``,
(DEFAULT) verifiers, the OOD verifiers used by ``allenai/IFBench_test``,
and the verifiers used by the multi-turn ``VGraf/ifeval_mt`` slices. The
scorer evaluates a response against per-instance instructions (looked up
in ``instance.metadata["instruction_id_list"]`` / ``"kwargs"``) and writes
Expand Down
4 changes: 2 additions & 2 deletions src/olmo_eval/evals/tasks/ifeval_ood.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""IFEval OOD: out-of-distribution instruction-following slice of IFBench.

Dataset: ``allenai/IFBench_test2`` (300 prompts), each carrying a list of
Dataset: ``allenai/IFBench_test`` (300 prompts), each carrying a list of
instruction IDs and per-instruction kwargs. Verifiers come from the vendored
registry in :mod:`olmo_eval.common.scorers.ifeval_deps`.

Expand Down Expand Up @@ -35,7 +35,7 @@

@register("ifeval_ood")
class IFEvalOOD(Task):
data_source = DataSource(path="allenai/IFBench_test2", split="train")
data_source = DataSource(path="allenai/IFBench_test", split="train")
split = Split.TRAIN
metrics = (
IFEvalPromptStrictAccuracy(),
Expand Down
Loading