mirror of
https://github.com/SikongJueluo/Mini-Nav.git
synced 2026-03-12 12:25:32 +08:00
12 lines
398 B
Python
12 lines
398 B
Python
"""Benchmark evaluation module.
|
|
|
|
This module provides a modular benchmark system that supports:
|
|
- Multiple dataset sources (HuggingFace, local)
|
|
- Multiple evaluation tasks (retrieval, with extensibility for more)
|
|
- Configuration-driven execution
|
|
"""
|
|
|
|
from .base import BaseBenchmarkTask, BaseDataset
|
|
from .runner import run_benchmark
|
|
|
|
__all__ = ["BaseBenchmarkTask", "BaseDataset", "run_benchmark"] |