|
1 | 1 | # Table of Contents |
2 | | -1. [Auto ML Introduction](#introduction) |
| 2 | +1. [Automated ML Introduction](#introduction) |
3 | 3 | 2. [Running samples in a Local Conda environment](#localconda) |
4 | 4 | 3. [Auto ML SDK Sample Notebooks](#samples) |
5 | 5 | 4. [Documentation](#documentation) |
6 | 6 | 5. [Running using python command](#pythoncommand) |
7 | 7 | 6. [Troubleshooting](#troubleshooting) |
8 | 8 |
|
9 | | -# Automated machine learning introduction <a name="introduction"></a> |
| 9 | +# Automated ML introduction <a name="introduction"></a> |
10 | 10 | 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. |
11 | 11 |
|
12 | 12 | 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. |
13 | 13 |
|
14 | 14 | 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. |
15 | 15 |
|
| 16 | +## Running samples in Azure Notebooks - Jupyter based notebooks in the Azure cloud |
16 | 17 |
|
17 | | -# Running samples in a Local Conda environment <a name="localconda"></a> |
| 18 | +1. [](https://aka.ms/aml-clone-azure-notebooks) |
| 19 | +[Import sample notebooks ](https://aka.ms/aml-clone-azure-notebooks) into Azure Notebooks if they are not already there. |
| 20 | +1. Create a workspace and its configuration file (**config.json**) using [these instructions](https://aka.ms/aml-how-to-configure-environment). |
| 21 | +1. Select `+New` in the Azure Notebook toolbar to add your **config.json** file to the imported folder. |
| 22 | +  |
| 23 | +1. Open the notebook. |
| 24 | + |
| 25 | + **Make sure the Azure Notebook kernal is set to `Python 3.6`** when you open a notebook. |
| 26 | + |
| 27 | +  |
18 | 28 |
|
19 | | -You can run these notebooks in Azure Notebooks without any extra installation. To run these notebook on your own notebook server, use these installation instructions. |
| 29 | +## Running samples in a Local Conda environment <a name="localconda"></a> |
| 30 | + |
| 31 | +To run these notebook on your own notebook server, use these installation instructions. |
20 | 32 |
|
21 | 33 | It is best if you create a new conda environment locally to try this SDK, so it doesn't mess up with your existing Python environment. |
22 | 34 |
|
@@ -143,11 +155,6 @@ automl_setup_linux.sh |
143 | 155 | - [13.auto-ml-dataprep.ipynb](13.auto-ml-dataprep.ipynb) |
144 | 156 | - Using DataPrep for reading data |
145 | 157 |
|
146 | | -- [14a.auto-ml-classification-ensemble.ipynb](14a.auto-ml-classification-ensemble.ipynb) |
147 | | - - Classification with ensembling |
148 | | - |
149 | | -- [14b.auto-ml-regression-ensemble.ipynb](14b.auto-ml-regression-ensemble.ipynb) |
150 | | - - Regression with ensembling |
151 | 158 |
|
152 | 159 | # Documentation <a name="documentation"></a> |
153 | 160 | ## Table of Contents |
|
0 commit comments