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
- Simple example of using Auto ML for classification with ONNX models
195
+
- Uses local compute for training
196
+
192
197
<aname="documentation"></a>
193
198
See [Configure automated machine learning experiments](https://docs.microsoft.com/azure/machine-learning/service/how-to-configure-auto-train) to learn how more about the the settings and features available for automated machine learning experiments.
194
199
@@ -233,6 +238,13 @@ If a sample notebook fails with an error that property, method or library does n
233
238
## Numpy import fails on Windows
234
239
Some Windows environments see an error loading numpy with the latest Python version 3.6.8. If you see this issue, try with Python version 3.6.7.
235
240
241
+
## Numpy import fails
242
+
Check the tensorflow version in the automated ml conda environment. Supported versions are < 1.13. Uninstall tensorflow from the environment if version is >= 1.13
243
+
You may check the version of tensorflow and uninstall as follows
244
+
1) start a command shell, activate conda environment where automated ml packages are installed
245
+
2) enter `pip freeze` and look for `tensorflow` , if found, the version listed should be < 1.13
246
+
3) If the listed version is a not a supported version, `pip uninstall tensorflow` in the command shell and enter y for confirmation.
247
+
236
248
## Remote run: DsvmCompute.create fails
237
249
There are several reasons why the DsvmCompute.create can fail. The reason is usually in the error message but you have to look at the end of the error message for the detailed reason. Some common reasons are:
238
250
1)`Compute name is invalid, it should start with a letter, be between 2 and 16 character, and only include letters (a-zA-Z), numbers (0-9) and \'-\'.` Note that underscore is not allowed in the name.
Copy file name to clipboardexpand all lines: how-to-use-azureml/automated-machine-learning/classification-with-deployment/auto-ml-classification-with-deployment.ipynb
+1-2
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,6 @@
139
139
" primary_metric = 'AUC_weighted',\n",
140
140
" iteration_timeout_minutes = 20,\n",
141
141
" iterations = 10,\n",
142
-
" n_cross_validations = 2,\n",
143
142
" verbosity = logging.INFO,\n",
144
143
" X = X_train, \n",
145
144
" y = y_train,\n",
@@ -263,7 +262,7 @@
263
262
"cell_type": "markdown",
264
263
"metadata": {},
265
264
"source": [
266
-
"To ensure the fit results are consistent with the training results, the SDK dependency versions need to be the same as the environment that trains the model. Details about retrieving the versions can be found in notebook [12.auto-ml-retrieve-the-training-sdk-versions](12.auto-ml-retrieve-the-training-sdk-versions.ipynb)."
265
+
"To ensure the fit results are consistent with the training results, the SDK dependency versions need to be the same as the environment that trains the model. The following cells create a file, myenv.yml, which specifies the dependencies from the run."
"Copyright (c) Microsoft Corporation. All rights reserved.\n",
8
+
"\n",
9
+
"Licensed under the MIT License."
10
+
]
11
+
},
12
+
{
13
+
"cell_type": "markdown",
14
+
"metadata": {},
15
+
"source": [
16
+
"# Automated Machine Learning\n",
17
+
"_**Classification with Local Compute**_\n",
18
+
"\n",
19
+
"## Contents\n",
20
+
"1. [Introduction](#Introduction)\n",
21
+
"1. [Setup](#Setup)\n",
22
+
"1. [Data](#Data)\n",
23
+
"1. [Train](#Train)\n",
24
+
"1. [Results](#Results)\n",
25
+
"1. [Test](#Test)\n",
26
+
"\n"
27
+
]
28
+
},
29
+
{
30
+
"cell_type": "markdown",
31
+
"metadata": {},
32
+
"source": [
33
+
"## Introduction\n",
34
+
"\n",
35
+
"In this example we use the scikit-learn's [digit dataset](http://scikit-learn.org/stable/datasets/index.html#optical-recognition-of-handwritten-digits-dataset) to showcase how you can use AutoML for a simple classification problem.\n",
36
+
"\n",
37
+
"Make sure you have executed the [configuration](../../../configuration.ipynb) before running this notebook.\n",
38
+
"\n",
39
+
"Please find the ONNX related documentations [here](https://github.com/onnx/onnx).\n",
40
+
"\n",
41
+
"In this notebook you will learn how to:\n",
42
+
"1. Create an `Experiment` in an existing `Workspace`.\n",
43
+
"2. Configure AutoML using `AutoMLConfig`.\n",
44
+
"3. Train the model using local compute with ONNX compatible config on.\n",
45
+
"4. Explore the results and save the ONNX model."
46
+
]
47
+
},
48
+
{
49
+
"cell_type": "markdown",
50
+
"metadata": {},
51
+
"source": [
52
+
"## Setup\n",
53
+
"\n",
54
+
"As part of the setup you have already created an Azure ML `Workspace` object. For AutoML you will need to create an `Experiment` object, which is a named object in a `Workspace` used to run experiments."
"# Exclude the first 100 rows from training so that they can be used for test.\n",
121
+
"X_train = digits.data[100:,:]\n",
122
+
"y_train = digits.target[100:]"
123
+
]
124
+
},
125
+
{
126
+
"cell_type": "markdown",
127
+
"metadata": {},
128
+
"source": [
129
+
"## Train with enable ONNX compatible models config on\n",
130
+
"\n",
131
+
"Instantiate an `AutoMLConfig` object to specify the settings and data used to run the experiment.\n",
132
+
"\n",
133
+
"Set the parameter enable_onnx_compatible_models=True, if you also want to generate the ONNX compatible models. Please note, the forecasting task and TensorFlow models are not ONNX compatible yet.\n",
134
+
"\n",
135
+
"|Property|Description|\n",
136
+
"|-|-|\n",
137
+
"|**task**|classification or regression|\n",
138
+
"|**primary_metric**|This is the metric that you want to optimize. Classification supports the following primary metrics: <br><i>accuracy</i><br><i>AUC_weighted</i><br><i>average_precision_score_weighted</i><br><i>norm_macro_recall</i><br><i>precision_score_weighted</i>|\n",
139
+
"|**iteration_timeout_minutes**|Time limit in minutes for each iteration.|\n",
140
+
"|**iterations**|Number of iterations. In each iteration AutoML trains a specific pipeline with the data.|\n",
"|**enable_onnx_compatible_models**|Enable the ONNX compatible models in the experiment.|\n",
144
+
"|**path**|Relative path to the project folder. AutoML stores configuration files for the experiment under this folder. You can specify a new empty folder.|"
"Call the `submit` method on the experiment object and pass the run configuration. Execution of local runs is synchronous. Depending on the data and the number of iterations this can run for a while.\n",
170
+
"In this example, we specify `show_output = True` to print currently running iterations to the console."
"The widget will first report a \"loading\" status while running the first iteration. After completing the first iteration, an auto-updating graph and table will be shown. The widget will refresh once per minute, so you should see the graph update as child runs complete.\n",
205
+
"\n",
206
+
"**Note:** The widget displays a link at the bottom. Use this link to open a web interface to explore the individual run details."
207
+
]
208
+
},
209
+
{
210
+
"cell_type": "code",
211
+
"execution_count": null,
212
+
"metadata": {},
213
+
"outputs": [],
214
+
"source": [
215
+
"from azureml.widgets import RunDetails\n",
216
+
"RunDetails(local_run).show() "
217
+
]
218
+
},
219
+
{
220
+
"cell_type": "markdown",
221
+
"metadata": {},
222
+
"source": [
223
+
"### Retrieve the Best ONNX Model\n",
224
+
"\n",
225
+
"Below we select the best pipeline from our iterations. The `get_output` method returns the best run and the fitted model. The Model includes the pipeline and any pre-processing. Overloads on `get_output` allow you to retrieve the best run and fitted model for *any* logged metric or for a particular *iteration*.\n",
226
+
"\n",
227
+
"Set the parameter return_onnx_model=True to retrieve the best ONNX model, instead of the Python model."
Copy file name to clipboardexpand all lines: how-to-use-azureml/automated-machine-learning/classification-with-whitelisting/auto-ml-classification-with-whitelisting.ipynb
Copy file name to clipboardexpand all lines: how-to-use-azureml/automated-machine-learning/classification/auto-ml-classification.ipynb
-2
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,6 @@
135
135
"|**primary_metric**|This is the metric that you want to optimize. Classification supports the following primary metrics: <br><i>accuracy</i><br><i>AUC_weighted</i><br><i>average_precision_score_weighted</i><br><i>norm_macro_recall</i><br><i>precision_score_weighted</i>|\n",
136
136
"|**iteration_timeout_minutes**|Time limit in minutes for each iteration.|\n",
137
137
"|**iterations**|Number of iterations. In each iteration AutoML trains a specific pipeline with the data.|\n",
138
-
"|**n_cross_validations**|Number of cross validation splits.|\n",
"|**path**|Relative path to the project folder. AutoML stores configuration files for the experiment under this folder. You can specify a new empty folder.|"
0 commit comments