Documentation Home
MySQL AI
Download this Manual
PDF (US Ltr) - 1.4Mb
PDF (A4) - 1.4Mb


MySQL AI  /  ...  /  AutoML Workflow

4.1.2 AutoML Workflow

A typical AutoML workflow is described below:

  1. When you run the ML_TRAIN routine, AutoML retrieves the data to use for training. The training data is then distributed across the cluster, which performs machine learning computation in parallel. See Train a Model.

  2. AutoML analyzes the training data, trains an optimized machine learning model, and stores the model in a model catalog. See Model Catalog.

  3. AutoML ML_PREDICT_* and ML_EXPLAIN_* routines use the trained model to generate predictions and explanations on test or unseen data. See Generate Predictions and Generate Explanations.

  4. Predictions and explanations are returned to the user or application that issued the query.

Optionally, the ML_SCORE routine can be used to compute the quality of a model to ensure that predictions and explanations are reliable. See Score a Model.

To start using AutoML with sample datasets, see Machine Learning Use Cases.

What's Next