| """ | |
| ZPCodec — Neural speech codec with packet-loss repair. | |
| Quick start: | |
| from zpcodec import ZPCodec | |
| model = ZPCodec.from_pretrained("your-hf-username/zpcodec") | |
| # or from a local file: | |
| model = ZPCodec.from_pretrained("path/to/zpcodec_weights.pt") | |
| """ | |
| from .model import ZPCodec | |
| from .GilbertElliot import GilbertElliottConfig, GilbertElliottSimulator | |
| __version__ = "1.0.0" | |
| __all__ = ["ZPCodec", "GilbertElliottConfig", "GilbertElliottSimulator"] | |