File size: 466 Bytes
cbac10e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """
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"]
|