# -*- coding: utf-8 -*- """ Evaluation Module - Emotion detection testing and benchmarking Components: - emotion_test_suite: Comprehensive emotion detection tests - accuracy_benchmark: Speed and accuracy measurements - live_stream_test: Real-time emotion transition testing - report_generator: Evaluation report generation """ from .emotion_test_suite import EmotionTestSuite from .accuracy_benchmark import AccuracyBenchmark from .live_stream_test import LiveStreamTest from .report_generator import ReportGenerator __all__ = [ "EmotionTestSuite", "AccuracyBenchmark", "LiveStreamTest", "ReportGenerator", ]