mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
11 lines
208 B
Python
11 lines
208 B
Python
"""Base Evaluator."""
|
|
from typing import List
|
|
|
|
|
|
class BaseEvaluator:
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
def score(self):
|
|
raise NotImplementedError("Method hasn't been implemented yet")
|