OpenHands 678436da30
Fix issue #5222: [Refactor]: Refactor the evaluation directory (#5223)
Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
2024-11-25 08:35:52 -05:00

17 lines
385 B
Python

from evaluation.benchmarks.mint.tasks.base import Task
from evaluation.benchmarks.mint.tasks.codegen import HumanEvalTask, MBPPTask
from evaluation.benchmarks.mint.tasks.reasoning import (
MultipleChoiceTask,
ReasoningTask,
TheoremqaTask,
)
__all__ = [
'Task',
'MultipleChoiceTask',
'ReasoningTask',
'TheoremqaTask',
'MBPPTask',
'HumanEvalTask',
]