Spaces:
Paused
Paused
File size: 406 Bytes
45ee481 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """
Evaluation module for AI Executive System.
This module handles:
- Voice authenticity metrics
- Factual accuracy verification
- Human evaluation set generation
"""
from .voice_metrics import VoiceMetrics
from .factual_accuracy import FactualAccuracyChecker
from .human_eval_generator import HumanEvalGenerator
__all__ = [
"VoiceMetrics",
"FactualAccuracyChecker",
"HumanEvalGenerator",
]
|