Skip to content
Closed
Changes from 1 commit
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
25 changes: 24 additions & 1 deletion src/lighteval/tasks/templates/utils/translation_literals.py
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,30 @@ def __getattribute__(self, name: str) -> str:
cause_word="imataq",
effect_word="chaymi",
),
Language.ROMANIAN: TranslationLiterals(language=Language.ROMANIAN),
Language.ROMANIAN: TranslationLiterals(
language=Language.ROMANIAN
question_word="întrebare",
answer="răspuns",
confirmation_word="corect",
yes="da",
no="nu",
also="de asemenea",
cause_word="pentru că",
effect_word="de aceea",
or_word="sau",
and_word="și",
true="adevărat",
false="fals",
neither="niciuna",
full_stop=".",
comma=",",
question_mark="?",
exclamation_mark="!",
word_space=" ",
sentence_space=" ",
colon=":",
indices=["A", "Ă", "Â", "B", "C", "D", ...]
),
Language.RUNDI: TranslationLiterals(language=Language.RUNDI),
Language.RUSSIAN: TranslationLiterals(
language=Language.RUSSIAN,
Expand Down