Skip to content

Commit 5ad3ca0

Browse files
authored
Merge pull request #265 from rastala/master
version 1.0.21
2 parents 407b892 + 556a41e commit 5ad3ca0

File tree

57 files changed

+4583
-1763
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+4583
-1763
lines changed

configuration.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"source": [
9797
"import azureml.core\n",
9898
"\n",
99-
"print(\"This notebook was created using version 1.0.18 of the Azure ML SDK\")\n",
99+
"print(\"This notebook was created using version 1.0.21 of the Azure ML SDK\")\n",
100100
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
101101
]
102102
},
@@ -336,7 +336,7 @@
336336
"\n",
337337
"In this notebook you configured this notebook library to connect easily to an Azure ML workspace. You can copy this notebook to your own libraries to connect them to you workspace, or use it to bootstrap new workspaces completely.\n",
338338
"\n",
339-
"If you came here from another notebook, you can return there and complete that exercise, or you can try out the [Tutorials](./tutorials) or jump into \"how-to\" notebooks and start creating and deploying models. A good place to start is the [train in notebook](./how-to-use-azureml/training/train-in-notebook) example that walks through a simplified but complete end to end machine learning process."
339+
"If you came here from another notebook, you can return there and complete that exercise, or you can try out the [Tutorials](./tutorials) or jump into \"how-to\" notebooks and start creating and deploying models. A good place to start is the [train within notebook](./how-to-use-azureml/training/train-within-notebook) example that walks through a simplified but complete end to end machine learning process."
340340
]
341341
},
342342
{

how-to-use-azureml/automated-machine-learning/README.md

+16-15
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,7 @@ Below are the three execution environments supported by AutoML.
4242
## Running samples in a Local Conda environment
4343

4444
To run these notebook on your own notebook server, use these installation instructions.
45-
46-
The instructions below will install everything you need and then start a Jupyter notebook. To start your Jupyter notebook manually, use:
47-
48-
```
49-
conda activate azure_automl
50-
jupyter notebook
51-
```
52-
53-
or on Mac:
54-
55-
```
56-
source activate azure_automl
57-
jupyter notebook
58-
```
59-
45+
The instructions below will install everything you need and then start a Jupyter notebook.
6046

6147
### 1. Install mini-conda from [here](https://conda.io/miniconda.html), choose 64-bit Python 3.7 or higher.
6248
- **Note**: if you already have conda installed, you can keep using it but it should be version 4.4.10 or later (as shown by: conda -V). If you have a previous version installed, you can update it using the command: conda update conda.
@@ -97,6 +83,21 @@ bash automl_setup_linux.sh
9783
- Please make sure you use the Python [conda env:azure_automl] kernel when trying the sample Notebooks.
9884
- Follow the instructions in the individual notebooks to explore various features in AutoML
9985

86+
### 6. Starting jupyter notebook manually
87+
To start your Jupyter notebook manually, use:
88+
89+
```
90+
conda activate azure_automl
91+
jupyter notebook
92+
```
93+
94+
or on Mac or Linux:
95+
96+
```
97+
source activate azure_automl
98+
jupyter notebook
99+
```
100+
100101
<a name="samples"></a>
101102
# Automated ML SDK Sample Notebooks
102103

how-to-use-azureml/automated-machine-learning/automl_env.yml

-22
This file was deleted.

how-to-use-azureml/automated-machine-learning/automl_env_mac.yml

-23
This file was deleted.

how-to-use-azureml/automated-machine-learning/automl_setup.cmd

-51
This file was deleted.

how-to-use-azureml/automated-machine-learning/automl_setup_linux.sh

-52
This file was deleted.

how-to-use-azureml/automated-machine-learning/automl_setup_mac.sh

-55
This file was deleted.

how-to-use-azureml/automated-machine-learning/classification-with-deployment/auto-ml-classification-with-deployment.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"|**iterations**|Number of iterations. In each iteration AutoML trains a specific pipeline with the data.|\n",
120120
"|**n_cross_validations**|Number of cross validation splits.|\n",
121121
"|**X**|(sparse) array-like, shape = [n_samples, n_features]|\n",
122-
"|**y**|(sparse) array-like, shape = [n_samples, ], [n_samples, n_classes]<br>Multi-class targets. An indicator matrix turns on multilabel classification. This should be an array of integers.|\n",
122+
"|**y**|(sparse) array-like, shape = [n_samples, ], Multi-class targets.|\n",
123123
"|**path**|Relative path to the project folder. AutoML stores configuration files for the experiment under this folder. You can specify a new empty folder.|"
124124
]
125125
},

how-to-use-azureml/automated-machine-learning/classification-with-whitelisting/auto-ml-classification-with-whitelisting.ipynb

+7-1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"metadata": {},
6161
"outputs": [],
6262
"source": [
63+
"#Note: This notebook will install tensorflow if not already installed in the enviornment..\n",
6364
"import logging\n",
6465
"\n",
6566
"from matplotlib import pyplot as plt\n",
@@ -70,6 +71,11 @@
7071
"import azureml.core\n",
7172
"from azureml.core.experiment import Experiment\n",
7273
"from azureml.core.workspace import Workspace\n",
74+
"try:\n",
75+
" import tensorflow as tf1\n",
76+
"except ImportError:\n",
77+
" from pip._internal import main\n",
78+
" main(['install', 'tensorflow>=1.10.0,<=1.12.0'])\n",
7379
"from azureml.train.automl import AutoMLConfig"
7480
]
7581
},
@@ -138,7 +144,7 @@
138144
"|**iterations**|Number of iterations. In each iteration AutoML trains a specific pipeline with the data.|\n",
139145
"|**n_cross_validations**|Number of cross validation splits.|\n",
140146
"|**X**|(sparse) array-like, shape = [n_samples, n_features]|\n",
141-
"|**y**|(sparse) array-like, shape = [n_samples, ], [n_samples, n_classes]<br>Multi-class targets. An indicator matrix turns on multilabel classification. This should be an array of integers.|\n",
147+
"|**y**|(sparse) array-like, shape = [n_samples, ], Multi-class targets.|\n",
142148
"|**path**|Relative path to the project folder. AutoML stores configuration files for the experiment under this folder. You can specify a new empty folder.|\n",
143149
"|**whitelist_models**|List of models that AutoML should use. The possible values are listed [here](https://docs.microsoft.com/en-us/azure/machine-learning/service/how-to-configure-auto-train#configure-your-experiment-settings).|"
144150
]

0 commit comments

Comments
 (0)