|
1 |
| -# Azure Machine Learning service sample notebooks |
2 |
| - |
3 |
| ---- |
| 1 | +# Azure Machine Learning service example notebooks |
4 | 2 |
|
5 | 3 | This repository contains example notebooks demonstrating the [Azure Machine Learning](https://azure.microsoft.com/en-us/services/machine-learning-service/) Python SDK
|
6 | 4 | which allows you to build, train, deploy and manage machine learning solutions using Azure. The AML SDK
|
7 | 5 | allows you the choice of using local or cloud compute resources, while managing
|
8 | 6 | and maintaining the complete data science workflow from the cloud.
|
9 | 7 |
|
10 |
| -* Read [instructions on setting up notebooks](./NBSETUP.md) to run these notebooks. |
| 8 | + |
11 | 9 |
|
12 |
| -* Find quickstarts, end-to-end tutorials, and how-tos on the [official documentation site for Azure Machine Learning service](https://docs.microsoft.com/en-us/azure/machine-learning/service/). |
| 10 | +## How to use and navigate the example notebooks? |
13 | 11 |
|
14 |
| -## Getting Started |
| 12 | +You can set up you own Python environment or use Azure Notebooks with Azure ML SDK pre-installed. Read [these instructions](./NBSETUP.md) to set up your environment and clone the example notebooks. |
15 | 13 |
|
16 |
| -These examples will provide you with an effective way to get started using AML. Once you're familiar with |
17 |
| -some of the capabilities, explore the repository for specific topics. |
| 14 | +You should always run the [Configuration](./configuration.ipynb) notebook first when setting up a notebook library on a new machine or in a new environment. It configures your notebook library to connect to an Azure Machine Learning workspace, and sets up your workspace and compute to be used by many of the other examples. |
18 | 15 |
|
19 |
| -- [Configuration](./configuration.ipynb) configures your notebook library to easily connect to an |
20 |
| - Azure Machine Learning workspace, and sets up your workspace to be used by many of the other examples. You should |
21 |
| - always run this first when setting up a notebook library on a new machine or in a new environment |
22 |
| -- [Train in notebook](./how-to-use-azureml/training/train-within-notebook) shows how to create a model directly in a notebook while recording |
23 |
| - metrics and deploy that model to a test service |
24 |
| -- [Train on remote](./how-to-use-azureml/training/train-on-remote-vm) takes the previous example and shows how to create the model on a cloud compute target |
25 |
| -- [Production deploy to AKS](./how-to-use-azureml/deployment/production-deploy-to-aks) shows how to create a production grade inferencing webservice |
| 16 | +If you want to... |
| 17 | + |
| 18 | + * ...try out and explore Azure ML, start with image classification tutorials [part 1 training](./tutorials/img-classification-part1-training.ipynb) and [part 2 deployment](./tutorials/img-classification-part2-deploy.ipynb). |
| 19 | + * ...learn about experimentation and tracking run history, first [train within Notebook](./how-to-use-azureml/training/train-within-notebook/train-within-notebook.ipynb), then try [training on remote VM](./how-to-use-azureml/training/train-on-remote-vm/train-on-remote-vm.ipynb) and [using logging APIs](./how-to-use-azureml/training/logging-api/logging-api.ipynb). |
| 20 | + * ...train deep learning models at scale, first learn about [Machine Learning Compute](./how-to-use-azureml/training/train-on-amlcompute/train-on-amlcompute.ipynb), and then try [distributed hyperparameter tuning](./how-to-use-azureml/training-with-deep-learning/train-hyperparameter-tune-deploy-with-pytorch/train-hyperparameter-tune-deploy-with-pytorch.ipynb) and [distributed training](./how-to-use-azureml/training-with-deep-learning/distributed-pytorch-with-horovod/distributed-pytorch-with-horovod.ipynb). |
| 21 | + * ...deploy model as realtime scoring service, first learn the basics by [training within Notebook and deploying to Azure Container Instance](./how-to-use-azureml/training/train-within-notebook/train-within-notebook.ipynb), then learn how to [register and manage models, and create Docker images](./how-to-use-azureml/deployment/register-model-create-image-deploy-service/register-model-create-image-deploy-service.ipynb), and [production deploy models on Azure Kubernetes Cluster](./how-to-use-azureml/deployment/production-deploy-to-aks/production-deploy-to-aks.ipynb). |
| 22 | + * ...deploy models as batch scoring service, first [train a model within Notebook](./how-to-use-azureml/training/train-within-notebook/train-within-notebook.ipynb), learn how to [register and manage models](./how-to-use-azureml/deployment/register-model-create-image-deploy-service/register-model-create-image-deploy-service.ipynb), then [create Machine Learning Compute for scoring compute](./how-to-use-azureml/training/train-on-amlcompute/train-on-amlcompute.ipynb), and [use Machine Learning Pipelines to deploy your model](./how-to-use-azureml/machine-learning-pipelines/pipeline-mpi-batch-prediction.ipynb). |
| 23 | + * ...monitor your deployed models, learn about using [App Insights](./how-to-use-azureml/deployment/enable-app-insights-in-production-service/enable-app-insights-in-production-service.ipynb) and [model data collection](./how-to-use-azureml/deployment/enable-data-collection-for-models-in-aks/enable-data-collection-for-models-in-aks.ipynb). |
26 | 24 |
|
27 | 25 | ## Tutorials
|
28 | 26 |
|
29 | 27 | The [Tutorials](./tutorials) folder contains notebooks for the tutorials described in the [Azure Machine Learning documentation](https://aka.ms/aml-docs)
|
30 | 28 |
|
31 |
| -## How to use AML |
| 29 | +## How to use Azure ML |
32 | 30 |
|
33 |
| -The [How to use AML](./how-to-use-azureml) folder contains specific examples demonstrating the features of the Azure Machine Learning SDK |
| 31 | +The [How to use Azure ML](./how-to-use-azureml) folder contains specific examples demonstrating the features of the Azure Machine Learning SDK |
34 | 32 |
|
35 | 33 | - [Training](./how-to-use-azureml/training) - Examples of how to build models using Azure ML's logging and execution capabilities on local and remote compute targets.
|
36 | 34 | - [Training with Deep Learning](./how-to-use-azureml/training-with-deep-learning) - Examples demonstrating how to build deep learning models using estimators and parameter sweeps
|
37 | 35 | - [Automated Machine Learning](./how-to-use-azureml/automated-machine-learning) - Examples using Automated Machine Learning to automatically generate optimal machine learning pipelines and models
|
38 | 36 | - [Machine Learning Pipelines](./how-to-use-azureml/machine-learning-pipelines) - Examples showing how to create and use reusable pipelines for training and batch scoring
|
39 | 37 | - [Deployment](./how-to-use-azureml/deployment) - Examples showing how to deploy and manage machine learning models and solutions
|
40 | 38 | - [Azure Databricks](./how-to-use-azureml/azure-databricks) - Examples showing how to use Azure ML with Azure Databricks
|
| 39 | + |
| 40 | +--- |
| 41 | +## Documentation |
| 42 | + |
| 43 | + * Quickstarts, end-to-end tutorials, and how-tos on the [official documentation site for Azure Machine Learning service](https://docs.microsoft.com/en-us/azure/machine-learning/service/). |
| 44 | + |
| 45 | + * [Python SDK reference]( https://docs.microsoft.com/en-us/python/api/overview/azure/ml/intro?view=azure-ml-py) |
| 46 | + |
| 47 | + |
| 48 | +--- |
| 49 | + |
| 50 | +## Projects using Azure Machine Learning |
| 51 | + |
| 52 | +Visit following repos to see projects contributed by Azure ML users: |
| 53 | + |
| 54 | + - [Fine tune natural language processing models using Azure Machine Learning service](https://github.com/Microsoft/AzureML-BERT) |
| 55 | + - [Fashion MNIST with Azure ML SDK](https://github.com/amynic/azureml-sdk-fashion) |
| 56 | + |
0 commit comments