codemalt / src /distiller /model2vec /train /__init__.py
Sarthak
chore: moved model2vec as in internal package
473c3a0
Raw
History Blame Contribute Delete
344 Bytes
from distiller.model2vec.utils import get_package_extras, importable
_REQUIRED_EXTRA = "train"
for extra_dependency in get_package_extras("model2vec", _REQUIRED_EXTRA):
importable(extra_dependency, _REQUIRED_EXTRA)
from distiller.model2vec.train.classifier import StaticModelForClassification
__all__ = ["StaticModelForClassification"]