anfastech's picture
New: Phoneme-level speech pathology diagnosis MVP with real-time streaming
1cd6149
raw
history blame contribute delete
395 Bytes
"""
Inference package for speech pathology diagnosis.
This package contains the inference pipeline for real-time and batch processing.
"""
from .inference_pipeline import (
InferencePipeline,
FramePrediction,
PhoneLevelResult,
create_inference_pipeline,
)
__all__ = [
"InferencePipeline",
"FramePrediction",
"PhoneLevelResult",
"create_inference_pipeline",
]