OpenCompass/opencompass/openicl/icl_evaluator/icl_base_evaluator.py

11 lines
208 B
Python
Raw Normal View History

2023-07-05 09:27:28 +08:00
"""Base Evaluator."""
from typing import List
class BaseEvaluator:
def __init__(self) -> None:
pass
def score(self):
raise NotImplementedError("Method hasn't been implemented yet")