mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
10 lines
433 B
Python
10 lines
433 B
Python
TASK_INFO_MAP = {
|
|
# === Reasoning ===
|
|
'gsm8k': {'class': 'ReasoningTask', 'type': 'reasoning'},
|
|
'math': {'class': 'ReasoningTask', 'type': 'reasoning'},
|
|
'mmlu': {'class': 'MultipleChoiceTask', 'type': 'reasoning'},
|
|
'theoremqa': {'class': 'TheoremqaTask', 'type': 'reasoning'},
|
|
'mbpp': {'class': 'MBPPTask', 'type': 'code_generation'},
|
|
'humaneval': {'class': 'HumanEvalTask', 'type': 'code_generation'},
|
|
}
|