yongyizang's picture
TinyMOSS-Diarize: 2.911-bit packed weights, runtime, and model card
7ccb33d verified
Raw
History Blame Contribute Delete
519 Bytes
"""Deployment export and reload helpers for the fixed MOSS quantized topology."""
from importlib import import_module
from typing import Any
__all__ = [
"build_export_plan",
"export_model",
"load_export",
"rebuild_cpu_model",
"verify_export",
]
def __getattr__(name: str) -> Any:
"""Load public helpers lazily so ``python -m export.export_model`` is clean."""
if name not in __all__:
raise AttributeError(name)
return getattr(import_module(".export_model", __name__), name)