Export evaluators (#7469)

This commit is contained in:
Silvano Cerza 2024-04-04 17:39:35 +02:00 committed by GitHub
parent 8ef6062748
commit 189dfaf640
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,15 @@
from .answer_exact_match import AnswerExactMatchEvaluator
from .document_map import DocumentMAPEvaluator
from .document_mrr import DocumentMRREvaluator
from .document_recall import DocumentRecallEvaluator
from .llm_evaluator import LLMEvaluator
from .sas_evaluator import SASEvaluator
__all__ = ["AnswerExactMatchEvaluator", "LLMEvaluator"]
__all__ = [
"AnswerExactMatchEvaluator",
"DocumentMAPEvaluator",
"DocumentMRREvaluator",
"DocumentRecallEvaluator",
"LLMEvaluator",
"SASEvaluator",
]