You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: how-to-use-azureml/azure-databricks/automl/README.md
+19-5Lines changed: 19 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,21 @@
1
-
# Adding an init script to an Azure Databricks cluster
1
+
# Automated ML introduction
2
+
Automated machine learning (automated ML) builds high quality machine learning models for you by automating model and hyperparameter selection. Bring a labelled dataset that you want to build a model for, automated ML will give you a high quality machine learning model that you can use for predictions.
2
3
3
-
The [azureml-cluster-init.sh](./azureml-cluster-init.sh) script configures the environment to
4
-
1. Install the latest AutoML library
5
4
6
-
To create the Azure Databricks cluster-scoped init script
5
+
If you are new to Data Science, automated ML will help you get jumpstarted by simplifying machine learning model building. It abstracts you from needing to perform model selection, hyperparameter selection and in one step creates a high quality trained model for you to use.
6
+
7
+
If you are an experienced data scientist, automated ML will help increase your productivity by intelligently performing the model and hyperparameter selection for your training and generates high quality models much quicker than manually specifying several combinations of the parameters and running training jobs. Automated ML provides visibility and access to all the training jobs and the performance characteristics of the models to help you further tune the pipeline if you desire.
8
+
9
+
# Install Instructions using Azure Databricks :
10
+
11
+
#### For Databricks non ML runtime 7.1(scala 2.21, spark 3.0.0) and up, Install Automated Machine Learning sdk by adding and running the following command as the first cell of your notebook. This will install AutoML dependencies specific for your notebook.
#### For Databricks non ML runtime 7.0 and lower, Install Automated Machine Learning sdk using init script as shown below before running the notebook.**
17
+
18
+
**Create the Azure Databricks cluster-scoped init script 'azureml-cluster-init.sh' as below
7
19
8
20
1. Create the base directory you want to store the init script in if it does not exist.
9
21
```
@@ -15,7 +27,7 @@ To create the Azure Databricks cluster-scoped init script
0 commit comments