A Simple 3-Step AzureML Pipeline
Get the source code and data on Github
This demonstrates how you create a multistep AzureML pipeline using a series of PythonScriptStep
objects.
In this case, the calculation is extremely trivial: predicting Iris species using scikit-learn's Gaussian Naive Bayes. This pipeline could be solved (very quickly) using this code:
import …