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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The `BeakerCallback` will save the config and Python requirements to the results dataset.
- Added `from_file` method to `Config` class.
- Added in-loop evals for OLMES basic skills eval
- Added in-loop fast MCQA for in-loop evals and translated MBPP tasks

### Changed

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies = [
"omegaconf",
"safetensors",
"importlib_resources",
"ai2-olmo-eval==0.7.2",
"ai2-olmo-eval==0.8.1",
]

[project.urls]
Expand Down
42 changes: 25 additions & 17 deletions src/olmo_core/train/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,12 @@ def with_recommended_evals(
"minerva_math_precalculus_gold_bpb_0shot",
"codex_humaneval_gold_bpb_0shot",
"codex_mbpp_gold_bpb_0shot",
# MT MBPP tasks
"mt_mbpp_rust_gold_bpb_3shot",
"mt_mbpp_java_gold_bpb_3shot",
"mt_mbpp_cpp_gold_bpb_3shot",
# Sanity check for MCQA ability
"copycolors_10way",
"copycolors_10way_fast",
# Basic Skills
"basic_skills_arithmetic_rc_5shot",
"basic_skills_coding_rc_5shot",
Expand All @@ -126,25 +130,25 @@ def with_recommended_evals(
# For training runs where we expect the model to acquire MC
tasks_large_compute = [
# OLMES Core 9(-ish) MC
"arc_challenge_test_mc_5shot",
"arc_easy_test_mc_5shot",
"arc_challenge_test_mc_5shot_fast",
"arc_easy_test_mc_5shot_fast",
"hellaswag_rc_5shot", # 1K subset of HellaSwag
"csqa_val_mc_5shot",
"piqa_val_mc_5shot",
"socialiqa_val_mc_5shot",
"csqa_val_mc_5shot_fast",
"piqa_val_mc_5shot_fast",
"socialiqa_val_mc_5shot_fast",
"winogrande_val_rc_5shot",
# Too noisy to be worth tracking
# "boolq_val_mc_5shot",
# "openbookqa_test_mc_5shot",
# "boolq_val_mc_5shot_fast",
# "openbookqa_test_mc_5shot_fast",
# MMLU MC BPB
"mmlu_stem_val_mc_5shot",
"mmlu_humanities_val_mc_5shot",
"mmlu_social_sciences_val_mc_5shot",
"mmlu_other_val_mc_5shot",
"mmlu_stem_test_mc_5shot",
"mmlu_humanities_test_mc_5shot",
"mmlu_social_sciences_test_mc_5shot",
"mmlu_other_test_mc_5shot",
"mmlu_stem_val_mc_5shot_fast",
"mmlu_humanities_val_mc_5shot_fast",
"mmlu_social_sciences_val_mc_5shot_fast",
"mmlu_other_val_mc_5shot_fast",
"mmlu_stem_test_mc_5shot_fast",
"mmlu_humanities_test_mc_5shot_fast",
"mmlu_social_sciences_test_mc_5shot_fast",
"mmlu_other_test_mc_5shot_fast",
# Gen tasks BPB
"gsm8k_gold_bpb_5shot",
"minerva_math_algebra_gold_bpb_0shot",
Expand All @@ -156,8 +160,12 @@ def with_recommended_evals(
"minerva_math_precalculus_gold_bpb_0shot",
"codex_humaneval_gold_bpb_0shot",
"codex_mbpp_gold_bpb_0shot",
# MT MBPP tasks
"mt_mbpp_rust_gold_bpb_3shot",
"mt_mbpp_java_gold_bpb_3shot",
"mt_mbpp_cpp_gold_bpb_3shot",
# Sanity check for MCQA ability
"copycolors_10way",
"copycolors_10way_fast",
# Basic Skills
"basic_skills_arithmetic_rc_5shot",
"basic_skills_coding_rc_5shot",
Expand Down