Skip to content

Commit bbdd0b8

Browse files
committed
Remove notebook notice
1 parent c9fb563 commit bbdd0b8

35 files changed

+1
-68
lines changed

articles/machine-learning/studio/algorithm-parameters-optimize.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ ms.date: 11/29/2017
1414
---
1515
# Choose parameters to optimize your algorithms in Azure Machine Learning Studio (classic)
1616

17-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
18-
1917
This topic describes how to choose the right hyperparameter set for an algorithm in Azure Machine Learning Studio (classic). Most machine learning algorithms have parameters to set. When you train a model, you need to provide values for those parameters. The efficacy of the trained model depends on the model parameters that you choose. The process of finding the optimal set of parameters is known as *model selection*.
2018

2119

articles/machine-learning/studio/azure-ml-netsharp-reference-guide.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ ms.date: 03/01/2018
1414
---
1515
# Guide to Net# neural network specification language for Azure Machine Learning Studio (classic)
1616

17-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
18-
1917
Net# is a language developed by Microsoft that is used to define complex neural network architectures such as deep neural networks or convolutions of arbitrary dimensions. You can use complex structures to improve learning on data such as image, video, or audio.
2018

2119
You can use a Net# architecture specification in these contexts:

articles/machine-learning/studio/consume-web-services.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ ms.date: 06/02/2017
1414
---
1515
# How to consume an Azure Machine Learning Studio (classic) web service
1616

17-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
18-
1917
Once you deploy an Azure Machine Learning Studio (classic) predictive model as a Web service, you can use a REST API to send it data and get predictions. You can send the data in real-time or in batch mode.
2018

2119
You can find more information about how to create and deploy a Machine Learning Web service using Machine Learning Studio (classic) here:

articles/machine-learning/studio/consuming-from-excel.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ ms.date: 02/01/2018
1414
---
1515
# Consuming an Azure Machine Learning Studio (classic) Web Service from Excel
1616

17-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
18-
1917
Azure Machine Learning Studio (classic) makes it easy to call web services directly from Excel without the need to write any code.
2018

2119
If you are using Excel 2013 (or later) or Excel Online, then we recommend that you use the Excel [Excel add-in](excel-add-in-for-web-services.md).

articles/machine-learning/studio/create-endpoint.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ ms.date: 02/15/2019
1414
---
1515
# Create endpoints for deployed Azure Machine Learning Studio (classic) web services
1616

17-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
18-
1917
> [!NOTE]
2018
> This topic describes techniques applicable to a **Classic** Machine Learning web service.
2119

articles/machine-learning/studio/create-experiment.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ ms.date: 02/06/2019
1616

1717
# Quickstart: Create your first data science experiment in Azure Machine Learning Studio (classic)
1818

19-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
20-
2119
[!INCLUDE [Designer notice](../../../includes/designer-notice.md)]
2220

2321
In this quickstart, you create a machine learning experiment in [Azure Machine Learning Studio (classic)](what-is-ml-studio.md) that predicts the price of a car based on different variables such as make and technical specifications.

articles/machine-learning/studio/create-models-and-endpoints-with-powershell.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ ms.date: 04/04/2017
1414
---
1515
# Create multiple web service endpoints from one experiment with ML Studio (classic) and PowerShell
1616

17-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
18-
1917
Here's a common machine learning problem: You want to create many models that have the same training workflow and use the same algorithm. But you want them to have different training datasets as input. This article shows you how to do this at scale in Azure Machine Learning Studio (classic) using just a single experiment.
2018

2119
For example, let's say you own a global bike rental franchise business. You want to build a regression model to predict the rental demand based on historic data. You have 1,000 rental locations across the world and you've collected a dataset for each location. They include important features such as date, time, weather, and traffic that are specific to each location.

articles/machine-learning/studio/create-workspace.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ ms.date: 12/07/2017
1515

1616
# Create and share an Azure Machine Learning Studio (classic) workspace
1717

18-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
19-
2018
To use Azure Machine Learning Studio (classic), you need to have a Machine Learning Studio (classic) workspace. This workspace contains the tools you need to create, manage, and publish experiments.
2119

2220
## Create a Studio (classic) workspace

articles/machine-learning/studio/deploy-a-machine-learning-web-service.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ ms.date: 01/06/2017
1414
---
1515
# Deploy an Azure Machine Learning Studio (classic) web service
1616

17-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
18-
1917
Azure Machine Learning Studio (classic) enables you to build and test a predictive analytic solution. Then you can deploy the solution as a web service.
2018

2119
Machine Learning Studio (classic) web services provide an interface between an application and a Machine Learning Studio (classic) workflow scoring model. An external application can communicate with a Machine Learning Studio (classic) workflow scoring model in real time. A call to a Machine Learning Studio (classic) web service returns prediction results to an external application. To make a call to a web service, you pass an API key that was created when you deployed the web service. A Machine Learning Studio (classic) web service is based on REST, a popular architecture choice for web programming projects.

articles/machine-learning/studio/deploy-consume-web-service-guide.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ ms.date: 04/19/2017
1414
---
1515
# Azure Machine Learning Studio (classic) Web Services: Deployment and consumption
1616

17-
[!INCLUDE [Notebook deprecation notice](../../../includes/aml-studio-notebook-notice.md)]
18-
1917
You can use Azure Machine Learning Studio (classic) to deploy machine learning workflows and models as web services. These web services can then be used to call the machine learning models from applications over the Internet to do predictions in real time or in batch mode. Because the web services are RESTful, you can call them from various programming languages and platforms, such as .NET and Java, and from applications, such as Excel.
2018

2119
The next sections provide links to walkthroughs, code, and documentation to help get you started.

0 commit comments

Comments
 (0)