mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-05 19:11:52 +00:00
feat(rag): Support rag retriever evaluation (#1291)
This commit is contained in:
13
dbgpt/rag/evaluation/__init__.py
Normal file
13
dbgpt/rag/evaluation/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""Module for evaluation of RAG."""
|
||||
|
||||
from .retriever import ( # noqa: F401
|
||||
RetrieverEvaluationMetric,
|
||||
RetrieverEvaluator,
|
||||
RetrieverSimilarityMetric,
|
||||
)
|
||||
|
||||
__ALL__ = [
|
||||
"RetrieverEvaluator",
|
||||
"RetrieverSimilarityMetric",
|
||||
"RetrieverEvaluationMetric",
|
||||
]
|
Reference in New Issue
Block a user