| """MossSpeechCodec package |
| |
| Lightweight, Transformers-style wrapper around the MossSpeech codec used by |
| `src/transformers/models/moss_speech/processing_moss_speech.py`. |
| |
| This module keeps the public API stable for the existing processor while |
| organizing the implementation to resemble Hugging Face codec models (e.g. |
| `xcodec`, `encodec`). Only the minimal parts required at inference are kept. |
| """ |
|
|
| from .configuration_moss_speech_codec import MossSpeechCodecConfig |
| from .modeling_moss_speech_codec import MossSpeechCodec |
|
|
| __all__ = [ |
| "MossSpeechCodec", |
| "MossSpeechCodecConfig", |
| ] |
|
|
|
|