A typical AutoML workflow is described below:
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.AutoML analyzes the training data, trains an optimized machine learning model, and stores the model in a model catalog. See Model Catalog.
AutoML
ML_PREDICT_*
andML_EXPLAIN_*
routines use the trained model to generate predictions and explanations on test or unseen data. See Generate Predictions and Generate Explanations.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.
-
Learn more about the following:
Learn how to Create a Machine Learning Model.