feat(rag): Support rag retriever evaluation (#1291)

This commit is contained in:
Fangyin Cheng
2024-03-14 13:06:57 +08:00
committed by GitHub
parent cd2dcc253c
commit adaa68eb00
34 changed files with 1452 additions and 67 deletions

View File

@@ -0,0 +1,13 @@
"""Module for evaluation of RAG."""
from .retriever import ( # noqa: F401
RetrieverEvaluationMetric,
RetrieverEvaluator,
RetrieverSimilarityMetric,
)
__ALL__ = [
"RetrieverEvaluator",
"RetrieverSimilarityMetric",
"RetrieverEvaluationMetric",
]