| # 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" | |