Skip to main content

TotoML SDK for Python

Project description

TotoML Python SDK

This library is an SDK for Toto ML

This library provides the following key components:

Model Controller: the Model Controller is a wrapper for your models. It provides:

  • REST APIs to trigger the training, scoring and predictions
  • Event-based access to the same (training, scoring, predicting)

How to use it

In your main python file (e.g. app.py), import the ModelController and ControllerConfig classes, create a Flask app, instantiate your model (in this example ERCBOD()) and pass it to the ModelController constructor.

from totoml.controller import ModelController
from totoml.config import ControllerConfig

app = Flask(__name__)

model_controller = ModelController(ERCBOD(), app, ControllerConfig(enable_batch_predictions_events=False, enable_single_prediction_events=False))

In order for the Model Controller to work, you have to provide to it your model (in the example ERBOCD()): that's called here a Model Delegate.

ModelDelegate is an abstract class provided by this SDK (delegate.ModelDelegate). Your model has to implement its methods.
Those methods are:

get_name()
This method has to return the name of the model. This is very important because the name of the model is used for everything in TotoML (internal folders, registry, file storage, etc..), so the name has to be unique.

get_model_type()
Not very used for now. Should return the type of model: sklearn, tf, etc..
Has to be an instance of ModelType

predict() and predict_batch()
These methods perform predictions.

score()
This method scores the current champion model: it has to recalculate the metrics for the model and return them

train()
This method performs the training of the model and returns the trained model and all the associated files.
It's important to note that also any file containing training data or built features should be returned, so that Toto ML can grant the persistence of those files and make sure there is lineage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

totoml-2.2.3.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

totoml-2.2.3-py3-none-any.whl (14.9 kB view details)

Uploaded Python 3

File details

Details for the file totoml-2.2.3.tar.gz.

File metadata

  • Download URL: totoml-2.2.3.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.4

File hashes

Hashes for totoml-2.2.3.tar.gz
Algorithm Hash digest
SHA256 e5bdd543be7e530842aab0fc42aa2fa0e28e6b99ac8596d6d67f4cb6845b857e
MD5 69b0bdb667bdef737c57e3a895ca793b
BLAKE2b-256 ee31b4baebe3b7599cfae49ff57aefe24ff0cf88e6ef7e2d51861046f870f712

See more details on using hashes here.

File details

Details for the file totoml-2.2.3-py3-none-any.whl.

File metadata

  • Download URL: totoml-2.2.3-py3-none-any.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.4

File hashes

Hashes for totoml-2.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 412b021c4502355768e33a1902e4db1e4b5c85532ea05f434fc36ea0889b4809
MD5 e3d07ab07f68dc3cf4091590c41fe03e
BLAKE2b-256 310601adfc08fd2114b258795838c849bea75ec1c07dc88f24bde7f86e8fbd5d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page