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
To run the notebooks in this repository use one of the two options.
5
+
To run the notebooks in this repository use one of these methods:
6
6
7
-
## Option 1: Use Azure Notebooks
8
-
Azure Notebooks is a hosted Jupyter-based notebook service in the Azure cloud. Azure Machine Learning Python SDK is already pre-installed in the Azure Notebooks `Python 3.6` kernel.
7
+
## Use Azure Notebooks - Jupyter based notebooks in the Azure cloud
[Import sample notebooks ](https://aka.ms/aml-clone-azure-notebooks) into Azure Notebooks
@@ -16,40 +15,20 @@ Azure Notebooks is a hosted Jupyter-based notebook service in the Azure cloud. A
16
15
17
16

18
17
19
-
## **Option 2: Use your own notebook server**
18
+
## **Use your own notebook server**
20
19
21
-
### Quick installation
22
-
We recommend you create a Python virtual environment ([Miniconda](https://conda.io/miniconda.html) preferred but [virtualenv](https://virtualenv.pypa.io/en/latest/) works too) and install the SDK in it.
# install the base SDK and a Jupyter notebook server
32
-
pip install azureml-sdk[notebooks]
33
-
34
-
# install the data prep component
35
-
pip install azureml-dataprep
36
-
37
-
# install model explainability component
38
-
pip install azureml-sdk[explain]
39
-
40
-
# install automated ml components
41
-
pip install azureml-sdk[automl]
42
-
43
-
# install experimental features (not ready for production use)
44
-
pip install azureml-sdk[contrib]
45
-
```
46
-
47
-
### Full instructions
48
-
[Install the Azure Machine Learning SDK](https://docs.microsoft.com/en-us/azure/machine-learning/service/quickstart-create-workspace-with-python)
49
-
50
-
Please make sure you start with the [Configuration](configuration.ipynb) notebook to create and connect to a workspace.
20
+
Video walkthrough:
51
21
22
+
[](https://youtu.be/VIsXeTuW3FU)
52
23
53
-
### Video walkthrough:
24
+
1. Setup a Jupyter Notebook server and [install the Azure Machine Learning SDK](https://docs.microsoft.com/en-us/azure/machine-learning/service/quickstart-create-workspace-with-python)
Copy file name to clipboardexpand all lines: how-to-use-azureml/automated-machine-learning/forecasting-energy-demand/auto-ml-forecasting-energy-demand.ipynb
+33-4
Original file line number
Diff line number
Diff line change
@@ -44,9 +44,31 @@
44
44
"cell_type": "markdown",
45
45
"metadata": {},
46
46
"source": [
47
-
"## Setup\n",
48
-
"\n",
49
-
"As part of the setup you have already created a <b>Workspace</b>. For AutoML you would need to create an <b>Experiment</b>. An <b>Experiment</b> is a named object in a <b>Workspace</b>, which is used to run experiments."
47
+
"## Setup\n"
48
+
]
49
+
},
50
+
{
51
+
"cell_type": "markdown",
52
+
"metadata": {},
53
+
"source": [
54
+
"To use the *forecasting* task in AutoML, you need to have the **azuremlftk** package installed in your environment. The following cell tests whether this package is installed locally and, if not, gives you instructions for installing it. "
55
+
]
56
+
},
57
+
{
58
+
"cell_type": "code",
59
+
"execution_count": null,
60
+
"metadata": {},
61
+
"outputs": [],
62
+
"source": [
63
+
"try:\n",
64
+
" import ftk\n",
65
+
" print('Using FTK version ' + ftk.__version__)\n",
66
+
"except ImportError:\n",
67
+
" print(\"Unable to import forecasting package. This notebook does not work without this package.\\n\"\n",
68
+
" + \"Please open a command prompt and run `pip install azuremlftk` to install the package. \\n\"\n",
69
+
" + \"Make sure you install the package into AutoML's Python environment.\\n\\n\"\n",
70
+
" + \"For instance, if AutoML is installed in a conda environment called `python36`, run:\\n\"\n",
"As part of the setup you have already created a <b>Workspace</b>. For AutoML you would need to create an <b>Experiment</b>. An <b>Experiment</b> is a named object in a <b>Workspace</b>, which is used to run experiments."
Copy file name to clipboardexpand all lines: how-to-use-azureml/automated-machine-learning/forecasting-orange-juice-sales/auto-ml-forecasting-orange-juice-sales.ipynb
+33-4
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,31 @@
45
45
"cell_type": "markdown",
46
46
"metadata": {},
47
47
"source": [
48
-
"## Setup\n",
49
-
"\n",
50
-
"As part of the setup you have already created a <b>Workspace</b>. To run AutoML, you also need to create an <b>Experiment</b>. An Experiment is a named object in a Workspace which represents a predictive task, the output of which is a trained model and a set of evaluation metrics for the model. "
48
+
"## Setup"
49
+
]
50
+
},
51
+
{
52
+
"cell_type": "markdown",
53
+
"metadata": {},
54
+
"source": [
55
+
"To use the *forecasting* task in AutoML, you need to have the **azuremlftk** package installed in your environment. The following cell tests whether this package is installed locally and, if not, gives you instructions for installing it."
56
+
]
57
+
},
58
+
{
59
+
"cell_type": "code",
60
+
"execution_count": null,
61
+
"metadata": {},
62
+
"outputs": [],
63
+
"source": [
64
+
"try:\n",
65
+
" import ftk\n",
66
+
" print('Using FTK version ' + ftk.__version__)\n",
67
+
"except ImportError:\n",
68
+
" print(\"Unable to import forecasting package. This notebook does not work without this package.\\n\"\n",
69
+
" + \"Please open a command prompt and run `pip install azuremlftk` to install the package. \\n\"\n",
70
+
" + \"Make sure you install the package into AutoML's Python environment.\\n\\n\"\n",
71
+
" + \"For instance, if AutoML is installed in a conda environment called `python36`, run:\\n\"\n",
"As part of the setup you have already created a <b>Workspace</b>. To run AutoML, you also need to create an <b>Experiment</b>. An Experiment is a named object in a Workspace which represents a predictive task, the output of which is a trained model and a set of evaluation metrics for the model. "
Copy file name to clipboardexpand all lines: how-to-use-azureml/azure-databricks/README.md
+1-46
Original file line number
Diff line number
Diff line change
@@ -10,52 +10,7 @@ In this section, you will find sample notebooks on how to use Azure Machine Lear
10
10
- Every run (including the best run) is available as a pipeline, which you can tune further if needed.
11
11
- The model trained using Azure Databricks can be registered in Azure ML SDK workspace and then deployed to Azure managed compute (ACI or AKS) using the Azure Machine learning SDK.
12
12
13
-
14
-
**Create Azure Databricks Cluster:**
15
-
16
-
Select New Cluster and fill in following detail:
17
-
- Cluster name: _yourclustername_
18
-
- Databricks Runtime: Any **non ML** runtime (non ML 4.x, 5.x)
19
-
- Python version: **3**
20
-
- Workers: 2 or higher.
21
-
22
-
These settings are only for using Automated Machine Learning on Databricks.
23
-
- Max. number of **concurrent iterations** in Automated ML settings is **<=** to the number of **worker nodes** in your Databricks cluster.
24
-
- Worker node VM types: **Memory optimized VM** preferred.
25
-
- Uncheck _Enable Autoscaling_
26
-
27
-
28
-
It will take few minutes to create the cluster. Please ensure that the cluster state is running before proceeding further.
29
-
30
-
**Install Azure ML SDK without Automated ML capability on your Azure Databricks cluster**
31
-
32
-
- Select Import library
33
-
34
-
- Source: Upload Python Egg or PyPI
35
-
36
-
- PyPi Name: **azureml-sdk[databricks]**
37
-
38
-
**Install Azure ML with Automated ML SDK on your Azure Databricks cluster**
39
-
40
-
- Select Import library
41
-
42
-
- Source: Upload Python Egg or PyPI
43
-
44
-
- PyPi Name: **azureml-sdk[automl_databricks]**
45
-
46
-
**For installation with or without Automated ML**
47
-
48
-
- Click Install Library
49
-
50
-
- Do not select _Attach automatically to all clusters_. In case you selected this earlier, please go to your Home folder and deselect it.
51
-
52
-
- Select the check box _Attach_ next to your cluster name
53
-
54
-
(More details on how to attach and detach libs are here - [https://docs.databricks.com/user-guide/libraries.html#attach-a-library-to-a-cluster](https://docs.databricks.com/user-guide/libraries.html#attach-a-library-to-a-cluster) )
55
-
56
-
- Ensure that there are no errors until Status changes to _Attached_. It may take a couple of minutes.
57
-
58
-
**Note** - If you have an old SDK version, please deselect it from cluster’s installed libs > move to trash. Install the new SDK verdion and restart the cluster. If there is an issue after this, please detach and reattach your cluster.
13
+
Please follow our [Azure doc](https://docs.microsoft.com/en-us/azure/machine-learning/service/how-to-configure-environment#azure-databricks) to install the sdk in your Azure Databricks cluster before trying any of the sample notebooks.
59
14
60
15
**Single file** -
61
16
The following archive contains all the sample notebooks. You can the run notebooks after importing [DBC](Databricks_AMLSDK_1-4_6.dbc) in your Databricks workspace instead of downloading individually.
0 commit comments