Zero-Ping / zpcodec /__init__.py
Lucabr01's picture
Upload zpcodec/__init__.py with huggingface_hub
cbac10e verified
raw
history blame contribute delete
466 Bytes
"""
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"]