philip11's picture
Upload 18 files
ab3c5c9 verified
Raw
History Blame Contribute Delete
287 Bytes
# models/__init__.py
# This file is required to make Python treat the directory as a package
# It can be empty or can contain initialization code for the models package
from .pii_masker import PIIMasker
from .classifier import EmailClassifier
__all__ = ['PIIMasker', 'EmailClassifier']