inoryQwQ's picture
Upload folder using huggingface_hub
76aca0a verified
Raw
History Blame Contribute Delete
452 Bytes
# Sherpa Punctuation SDK for AX650
#
# Converts raw Chinese text to punctuation-annotated text using
# the compiled AXMODEL on AXera NPU (or CPU fallback).
from .pipeline import PunctuationPipeline
from .preprocess import CharTokenizer
from .postprocess import decode_punctuation
from .inference import PunctInference
__all__ = [
"PunctuationPipeline",
"CharTokenizer",
"decode_punctuation",
"PunctInference",
]
__version__ = "1.0.0"