Automate machine learning model selection with Azure Machine Learning Flashcards
What is Automated Machine Learning
Automated Machine Learning enables you to try multiple Algorithms and preprocessing transformations with you data. This, combined with scalable cloud-based compute makes it possible to find the best performing model for your data without the huge amount of time-consuming manual trial and error that would otherwise be required
Where can you run Azure Machine Learning SDK to run automated machine learning experiments? Basic or Enterprise edition or both
Both - god how generous Microsoft is…
For which model types can you use automated machine learning in AML to train?
Classification
Regression
TIme Series Forecasting
What is it with pre-processing and featurization within automated machine learning. How do you apply for example scaling and normalization
Automated machine learning applies scaling and normalization to numeric data automatically, helping prevent any large-scale features from dominating training. During an automated machine learning experiment, multiple scaling or normalization techniques will be applied
What options do you have to run an automated machine learning experiment
You can either use the user interface in Azure Machine Learning studio, or submit an experiment using the SDK.
What options are available for specifying data for training within Automated Machine Learning
When using the SDK to run an automated machine learning experiment, you can submit the data in the following ways:
- Specify a dataset or dataframe of training data that includes features and the label to be predicted
- Optionally, specify a second validation data dataset or dataframe that will be used to validate the trained model. If this is not provided, AML will apply cross-validation using the training data
Alternatively: use numpy arrays
You have submitted an automated machine learning run using the Python SDk for Azure Machine Learning. When the run completes, which method of the run object should you use to retrieve the best model?
get_output()
load_model()
get_metrics()
get_output()
That is correct. The get_output method of an automated machine learning run returns the best mode and the child run that trained it.