Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implemented flores200 #96

Merged
merged 7 commits into from
Nov 17, 2023
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
6 changes: 6 additions & 0 deletions lm_eval/tasks/opengptx/all_tasks_registry.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# OpenGPT-X tasks
from . import flores200
from . import german_europarl_ppl
from . import german_ler_ppl
from . import germanquad
Expand All @@ -17,6 +18,9 @@
from . import xquad
from . import xnli

########################################
# Translation tasks
########################################

TASK_REGISTRY_TMP = {
# OpenGPT-X tasks
Expand All @@ -40,6 +44,8 @@
"xstance_fr": x_stance.XStanceFR,
**xquad.construct_tasks(),
**xnli.construct_tasks(),
**flores200.construct_lang_tasks(),
**flores200.construct_trans_tasks(),
}

# add a prefix to tasks implemented by OpenGPT-X
Expand Down
Loading
Loading