ai-lab-transformers-playground/src/commands/__init__.py

11 lines
312 B
Python

"""
AI Lab commands
"""
from .sentiment import SentimentCommand
from .fillmask import FillMaskCommand
from .textgen import TextGenCommand
from .moderation import ModerationCommand
from .ner import NERCommand
__all__ = ['SentimentCommand', 'FillMaskCommand', 'TextGenCommand', 'ModerationCommand', 'NERCommand']