Azure Machine Learning designer (preview) gives you a cloud-based interactive, visual workspace that you can use to easily and quickly prep data, train and deploy machine learning models. It supports Azure Machine Learning compute, GPU or CPU. Machine Learning designer also supports publishing models as web services on Azure Kubernetes Service that can easily be consumed by other applications.
In this lab, we will be compare the performance of two regression algorithms: Boosted Decision Tree Regression
and Neural Net Regression
for predicting automobile prices. We will do all of this from the Azure Machine Learning designer without writing a single line of code.
-
In Azure portal, open the available machine learning workspace.
-
Select Launch now under the Try the new Azure Machine Learning studio message.
-
When you first launch the studio, you may need to set the directory and subscription. If so, you will see this screen:
For the directory, select Udacity and for the subscription, select Azure Sponsorship. For the machine learning workspace, you may see multiple options listed. Select any of these (it doesn't matter which) and then click Get started.
-
From the studio, select Designer, Sample 2: Regression - Automobile Price Prediction (Compare algorithms).
-
In the settings panel on the right, select Select compute target.
-
In the
Set up compute target
editor, select the available compute, and then select Save.
Note: If you are facing difficulties in accessing pop-up windows or buttons in the user interface, please refer to the Help section in the lab environment.
-
From the
right-hand-side
of the pipeline, select the Decision Forest Regression module and then select the Delete Icon.
-
Select Machine Learning Algorithms section in the left navigation. Follow the steps outlined below:
-
Select the Neural Net Regression prebuilt module
-
Drag and drop the selected module on to the canvas
-
Set
Number of hidden nodes
to 1000 -
Set
Learning rate
to 0.0001 -
Set
Number of learning iterations
to 10000 -
Set
Random number seed
to 139 -
Connect the
Neural Net Regression
module to the first input of theTrain Model
module
-
-
Select Submit to open the
Setup pipeline run
editor.Please note that the button name in the UI is changed from Run to Submit.
-
In the
Setup pipeline run editor
, select Experiment, Create new and provideNew experiment name:
automobile-price-prediction, and then select Submit. -
Wait for pipeline run to complete. It will take around 10 minutes to complete the run.
-
While you wait for the model training to complete, you can learn more about the evaluation metrics for the regression algorithm used in this lab by selecting Metrics for regression models.
-
Select the regression performance metric Root_Mean_Squared_Error and compare performance of the two algorithms:
Boosted Decision Tree Regression
andNeural Net Regression
. Note that smaller value forRoot_Mean_Squared_Error
implies better performance.
- Based on the performance metric,
Root_Mean_Squared_Error
, it shows that theBoosted Decision Tree Regression
algorithm outperforms theNeural Net Regression
algorithm. One recommendation for next steps is to tune the hyperparameters for theNeural Net Regression
module to see if we can improve its performance.
Congratulations! You have trained and compared performance of two different regression machine learning models. You can continue to experiment in the environment but are free to close the lab environment tab and return to the Udacity portal to continue with the lesson.