OpenCompass/opencompass/metrics/__init__.py
Yike Yuan a6552224cb
[Feat] Support multi-modal evaluation on MME benchmark. (#197)
* [Feat] Support multi-modal evaluation on MME benchmark.

* [Fix] Remove debug code.

* [Fix] Remove redundant codes and add type hints.

* [Fix] Rename in config.

* [Fix] Rebase main.

* [Fix] Fix isort and yapf conflict.
2023-08-21 15:53:20 +08:00

6 lines
163 B
Python

from .dump_results import DumpResults
from .mme_score import MMEMetric
from .seedbench import SEEDBenchAcc
__all__ = ['DumpResults', 'SEEDBenchAcc', 'MMEMetric']