OpenCompass/opencompass/openicl/icl_evaluator/icl_base_evaluator.py
Tong Gao 1e44541730
[Enhancement] Test linting in CI and fix existing linting errors (#69)
* [Enhancement] Test linting in CI

* fix linting
2023-07-17 15:59:10 +08:00

11 lines
185 B
Python

"""Base Evaluator."""
class BaseEvaluator:
def __init__(self) -> None:
pass
def score(self):
raise NotImplementedError("Method hasn't been implemented yet")