File size: 590 Bytes
1a05ac7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""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",
]