Skip to content

Commit 6524c99

Browse files
committed
broken links
1 parent adc1750 commit 6524c99

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

.openpublishing.redirection.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@
399399
{
400400
"source_path": "articles/machine-learning/service/setup-create-workspace.md",
401401
"redirect_url": "/azure/machine-learning/how-to-manage-workspace",
402-
"redirect_document_id": true
402+
"redirect_document_id": false
403403
},
404404
{
405405
"source_path": "articles/machine-learning/service/concept-accelerate-with-fpgas.md",
@@ -424,7 +424,7 @@
424424
{
425425
"source_path": "articles/machine-learning/service/quickstart-run-cloud-notebook.md",
426426
"redirect_url": "/azure/machine-learning/tutorial-1st-experiment-sdk-setup",
427-
"redirect_document_id": true
427+
"redirect_document_id": false
428428
},
429429
{
430430
"source_path": "articles/machine-learning/service/ui-quickstart-run-experiment.md",
@@ -599,7 +599,7 @@
599599
{
600600
"source_path": "articles/open-datasets/tutorial-opendatasets-automl.md",
601601
"redirect_url": "/azure/machine-learning/tutorial-auto-train-models",
602-
"redirect_document_id": true
602+
"redirect_document_id": false
603603
},
604604
{
605605
"source_path": "articles/virtual-machines/windows/high-performance-computing.md",

articles/data-factory/update-machine-learning-models.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ ms.topic: conceptual
1313
ms.date: 01/16/2018
1414
---
1515

16-
# Update Azure Machine Learning models by using Update Resource activity
16+
# Update ML Studio (classic)v models by using Update Resource activity
1717

1818
[!INCLUDE[appliesto-adf-asa-md](includes/appliesto-adf-asa-md.md)]
1919

20-
This article complements the main Azure Data Factory - Azure Machine Learning integration article: [Create predictive pipelines using Azure Machine Learning and Azure Data Factory](transform-data-using-machine-learning.md). If you haven't already done so, review the main article before reading through this article.
20+
This article complements the main Azure Data Factory - ML Studio (classic)integration article: [Create predictive pipelines using Azure Machine Learning and Azure Data Factory](transform-data-using-machine-learning.md). If you haven't already done so, review the main article before reading through this article.
2121

2222
## Overview
23-
As part of the process of operationalizing Azure Machine Learning models, your model is trained and saved. You then use it to create a predictive Web service. The Web service can then be consumed in web sites, dashboards, and mobile apps.
23+
As part of the process of operationalizing ML Studio (classic) models, your model is trained and saved. You then use it to create a predictive Web service. The Web service can then be consumed in web sites, dashboards, and mobile apps.
2424

25-
Models you create using Machine Learning are typically not static. As new data becomes available or when the consumer of the API has their own data the model needs to be retrained. Refer to [Retrain a Machine Learning Model](../machine-learning/machine-learning-retrain-machine-learning-model.md) for details about how you can retrain a model in Azure Machine Learning.
25+
Models you create using Machine Learning are typically not static. As new data becomes available or when the consumer of the API has their own data the model needs to be retrained.
2626

2727
Retraining may occur frequently. With Batch Execution activity and Update Resource activity, you can operationalize the Azure Machine Learning model retraining and updating the predictive Web Service using Data Factory.
2828

2929
The following picture depicts the relationship between training and predictive Web Services.
3030

3131
![Web services](./media/update-machine-learning-models/web-services.png)
3232

33-
## Azure Machine Learning update resource activity
33+
## ML Studio (classic) update resource activity
3434

35-
The following JSON snippet defines an Azure Machine Learning Batch Execution activity.
35+
The following JSON snippet defines an ML Studio (classic) Batch Execution activity.
3636

3737
```json
3838
{

articles/data-factory/v1/data-factory-azure-ml-update-resource-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Over time, the predictive models in the Azure ML scoring experiments need to be
3939
1. Create an experiment in [Azure Machine Learning Studio (classic)](https://studio.azureml.net).
4040
2. When you are satisfied with the model, use Azure Machine Learning Studio (classic) to publish web services for both the **training experiment** and scoring/**predictive experiment**.
4141

42-
The following table describes the web services used in this example. See [Retrain Machine Learning models programmatically](../../machine-learning/machine-learning-retrain-models-programmatically.md) for details.
42+
The following table describes the web services used in this example. See [Retrain Machine Learning Studio (classic) models programmatically](../../machine-learning/studio/retrain-machine-learning-model.md) for details.
4343

4444
- **Training web service** - Receives training data and produces trained models. The output of the retraining is an .ilearner file in an Azure Blob storage. The **default endpoint** is automatically created for you when you publish the training experiment as a web service. You can create more endpoints but the example uses only the default endpoint.
4545
- **Scoring web service** - Receives unlabeled data examples and makes predictions. The output of prediction could have various forms, such as a .csv file or rows in an Azure SQL database, depending on the configuration of the experiment. The default endpoint is automatically created for you when you publish the predictive experiment as a web service.

articles/machine-learning/studio/sample-experiments.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,4 @@ A new experiment is created in your Machine Learning Studio (classic) workspace
5555

5656
## Next steps
5757
* [Import data from various sources](import-data.md)
58-
* [Quickstart tutorial for the R language in Machine Learning](r-quickstart.md)
5958
* [Deploy a Machine Learning web service](deploy-a-machine-learning-web-service.md)

articles/stream-analytics/stream-analytics-scale-with-machine-learning-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ In general, ***B*** for batch size, ***L*** for the web service latency at batch
5353

5454
You can also configure the 'max concurrent calls' on the Machine Learning web service. It's recommended to set this parameter to the maximum value (200 currently).
5555

56-
For more information on this setting, review the [Scaling article for Machine Learning Web Services](../machine-learning/studio/scaling-webservice.md).
56+
For more information on this setting, review the [Scaling article for Machine Learning Web Services](../machine-learning/studio/create-endpoint.md).
5757

5858
## Example – Sentiment Analysis
5959
The following example includes a Stream Analytics job with the sentiment analysis Machine Learning function, as described in the [Stream Analytics Machine Learning integration tutorial](stream-analytics-machine-learning-integration-tutorial.md).

0 commit comments

Comments
 (0)