Spaces:
Sleeping
Sleeping
File size: 450 Bytes
f343f06 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """
Evaluation module for retrieval performance.
Provides:
- EvaluationMetrics: F1@K and timing statistics
- GroundTruth: Ground truth label management
"""
from .metrics import EvaluationMetrics, EvaluationResult
from .ground_truth import GroundTruth, GroundTruthPair, create_ground_truth_from_matches
__all__ = [
"EvaluationMetrics",
"EvaluationResult",
"GroundTruth",
"GroundTruthPair",
"create_ground_truth_from_matches",
]
|