24 lines
743 B
Python
24 lines
743 B
Python
"""GreatAI"""
|
|
__version__ = "0.1.0"
|
|
|
|
|
|
from .context import configure
|
|
from .deploy import GreatAI
|
|
from .errors import (
|
|
ArgumentValidationError,
|
|
MissingArgumentError,
|
|
RemoteCallError,
|
|
WrongDecoratorOrderError,
|
|
)
|
|
from .models import save_model, use_model
|
|
from .output_views import (
|
|
ClassificationOutput,
|
|
MultiLabelClassificationOutput,
|
|
RegressionOutput,
|
|
)
|
|
from .parameters.log_metric import log_metric
|
|
from .parameters.parameter import parameter
|
|
from .persistence import MongodbDriver, ParallelTinyDbDriver, TracingDatabaseDriver
|
|
from .remote import call_remote_great_ai, call_remote_great_ai_async
|
|
from .tracing import add_ground_truth, delete_ground_truth, query_ground_truth
|
|
from .views import RouteConfig, Trace
|