Skip to content

Commit 92b8f3b

Browse files
committed
fix blocking issues
1 parent 772e128 commit 92b8f3b

File tree

10 files changed

+32
-32
lines changed

10 files changed

+32
-32
lines changed

articles/machine-learning/how-to-r-azure-ml-deploy-r-model.md renamed to articles/machine-learning/how-to-r-deploy-r-model.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ In this article, you'll learn how to deploy an R model to a managed endpoint (We
2121

2222
- An [Azure Machine Learning workspace](quickstart-create-resources.md).
2323
- Azure [CLI and ml extension installed](how-to-configure-cli.md). Or use a [compute instance in your workspace](quickstart-create-resources.md), which has the CLI pre-installed.
24-
- At least one custom environment associated with your workspace. Create [an R environment](how-to-r-azure-ml-modify-script-for-production.md#create-an-environment), or any other custom environment if you don't have one.
24+
- At least one custom environment associated with your workspace. Create [an R environment](how-to-r-modify-script-for-production.md#create-an-environment), or any other custom environment if you don't have one.
2525
- An understanding of the [R `plumber` package](https://www.rplumber.io/index.html)
26-
- A model that you've trained and [packaged with `crate`](how-to-r-azure-ml-modify-script-for-production.md#crate-your-models-with-the-carrier-package), and [registered into your workspace](how-to-r-azure-ml-train-model.md#register-model)
26+
- A model that you've trained and [packaged with `crate`](how-to-r-modify-script-for-production.md#crate-your-models-with-the-carrier-package), and [registered into your workspace](how-to-r-train-model.md#register-model)
2727

2828
## Create a folder with this structure
2929

@@ -177,7 +177,7 @@ These steps assume you have an Azure Container Registry associated with your wor
177177
1. On the left navigation, select **Environments**.
178178
1. On the top, select **Custom environments**.
179179
1. If you see custom environments, nothing more is needed.
180-
1. If you don't see any custom environments, create [an R environment](how-to-r-azure-ml-modify-script-for-production.md#create-an-environment), or any other custom environment. (You *won't* use this environment for deployment, but you *will* use the container registry that is also created for you.)
180+
1. If you don't see any custom environments, create [an R environment](how-to-r-modify-script-for-production.md#create-an-environment), or any other custom environment. (You *won't* use this environment for deployment, but you *will* use the container registry that is also created for you.)
181181

182182
Once you have verified that you have at least one custom environment, use the following steps to build a container.
183183

@@ -201,7 +201,7 @@ Once you have verified that you have at least one custom environment, use the fo
201201
az account set --subscription "<SUBSCRIPTION-NAME>"
202202
```
203203
204-
1. Set the default workspace. If you're doing this from a compute instance, you can use the following command as is. If you're on any other computer, substitute your resource group and workspace name instead. (You can find these values in [Azure Machine Learning studio](how-to-r-azure-ml-train-model.md#submit-the-job).)
204+
1. Set the default workspace. If you're doing this from a compute instance, you can use the following command as is. If you're on any other computer, substitute your resource group and workspace name instead. (You can find these values in [Azure Machine Learning studio](how-to-r-train-model.md#submit-the-job).)
205205
206206
```azurecli
207207
az configure --defaults group=$CI_RESOURCE_GROUP workspace=$CI_WORKSPACE
@@ -326,7 +326,7 @@ Enter the following json into the **Input data to rest real-time endpoint** text
326326

327327
Select **Test**. You should see the following output:
328328

329-
:::image type="content" source="media/how-to-r-azure-ml-deploy-an-r-model/test-deployment.png" alt-text="Screenshot shows results from testing a model." lightbox="media/how-to-r-azure-ml-deploy-an-r-model/test-deployment.png":::
329+
:::image type="content" source="media/how-to-r-deploy-an-r-model/test-deployment.png" alt-text="Screenshot shows results from testing a model." lightbox="media/how-to-r-deploy-an-r-model/test-deployment.png":::
330330

331331
# [Azure CLI](#tab/cli)
332332

@@ -361,4 +361,4 @@ az ml online-endpoint delete --name r-endpoint-forecast
361361

362362
## Next steps
363363

364-
For more information about using R with Azure Machine Learning, see [Overview of R capabilities in Azure Machine Learning](how-to-r-azure-ml-overview-r-capabilities.md)
364+
For more information about using R with Azure Machine Learning, see [Overview of R capabilities in Azure Machine Learning](how-to-r-overview-r-capabilities.md)

articles/machine-learning/how-to-r-azure-ml-interactive-development.md renamed to articles/machine-learning/how-to-r-interactive-development.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Many R users also use RStudio, a popular IDE. You can install RStudio or Posit W
3333
You'll use a notebook in your Azure Machine Learning workspace, on a compute instance.
3434

3535
1. Sign in to [Azure Machine Learning studio](https://ml.azure.com)
36-
1. Open your workspace if isn't already open
36+
1. Open your workspace if it isn't already open
3737
1. On the left navigation, select **Notebooks**
3838
1. Create a new notebook, named **RunR.ipynb**
3939

@@ -44,7 +44,7 @@ You'll use a notebook in your Azure Machine Learning workspace, on a compute ins
4444
1. On the notebook toolbar, make sure your compute instance is running. If not, start it now.
4545
1. On the notebook toolbar, switch the kernel to **R**.
4646

47-
:::image type="content" source="media/how-to-r-azure-ml-interactive-development/r-kernel.png" alt-text="Screenshot: Switch the notebook kernel to use R." lightbox="media/how-to-r-azure-ml-interactive-development/r-kernel.png":::
47+
:::image type="content" source="media/how-to-r-interactive-development/r-kernel.png" alt-text="Screenshot: Switch the notebook kernel to use R." lightbox="media/how-to-r-interactive-development/r-kernel.png":::
4848

4949
Your notebook is now ready for you to run R commands.
5050

@@ -156,4 +156,4 @@ Other than the above issues, use R as you would in any other environment, such a
156156
157157
## Next steps
158158

159-
* [Adapt your R script to run in production](how-to-r-azure-ml-modify-script-for-production.md)
159+
* [Adapt your R script to run in production](how-to-r-modify-script-for-production.md)

articles/machine-learning/how-to-r-azure-ml-modify-script-for-production.md renamed to articles/machine-learning/how-to-r-modify-script-for-production.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,4 +302,4 @@ Some additional suggestions you may want to consider:
302302

303303
## Next steps
304304

305-
* [How to train R models in Azure Machine Learning](how-to-r-azure-ml-train-model.md)
305+
* [How to train R models in Azure Machine Learning](how-to-r-train-model.md)

articles/machine-learning/how-to-r-azure-ml-overview-r-capabilities.md renamed to articles/machine-learning/how-to-r-overview-r-capabilities.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,27 @@ This article outlines the key scenarios for R that are supported in Azure Machin
2323

2424
A typical workflow for using R with Azure Machine Learning:
2525

26-
- [Develop R scripts interactively](how-to-r-azure-ml-interactive-development.md) using Jupyter Notebooks on a compute instance. (While you can also add Posit or RStudio to a compute instance, you can't currently access data assets in the workspace from these applications on the compute instance. So for now, interactive work is best done in a Jupyter notebook.)
26+
- [Develop R scripts interactively](how-to-r-interactive-development.md) using Jupyter Notebooks on a compute instance. (While you can also add Posit or RStudio to a compute instance, you can't currently access data assets in the workspace from these applications on the compute instance. So for now, interactive work is best done in a Jupyter notebook.)
2727

2828
- Read tabular data from a registered data asset or datastore
2929
- Install additional R libraries
3030
- Save artifacts to the workspace file storage
3131

32-
- [Adapt your script](how-to-r-azure-ml-modify-script-for-production.md) to run as a production job in Azure Machine Learning
32+
- [Adapt your script](how-to-r-modify-script-for-production.md) to run as a production job in Azure Machine Learning
3333

3434
- Remove any code that may require user interaction
3535
- Add command line input parameters to the script as necessary
3636
- Include and source the `azureml_utils.R` script in the same working directory of the R script to be executed
3737
- Use `crate` to package the model
3838
- Include the R/MLflow functions in the script to **log** artifacts, models, parameters, and/or tags to the job on MLflow
3939

40-
- [Submit remote asynchronous R jobs](how-to-r-azure-ml-train-model.md) (you submit jobs via the CLI or Python SDK, not R)
40+
- [Submit remote asynchronous R jobs](how-to-r-train-model.md) (you submit jobs via the CLI or Python SDK, not R)
4141

4242
- Build an environment
4343
- Log job artifacts, parameters, tags and models
4444

45-
- [Register your model](how-to-r-azure-ml-train-model.md#register-model) using Azure Machine Learning studio
46-
- [Deploy registered R models](how-to-r-azure-ml-deploy-r-model.md) to managed online endpoints
45+
- [Register your model](how-to-r-train-model.md#register-model) using Azure Machine Learning studio
46+
- [Deploy registered R models](how-to-r-deploy-r-model.md) to managed online endpoints
4747
- Use the deployed endpoints for real-time inferencing/scoring
4848

4949
## Known limitations
@@ -59,15 +59,15 @@ A typical workflow for using R with Azure Machine Learning:
5959
| Programmatic model registering/recording from a running job with R isn't supported. | |
6060
| Zero code deployment (that is, automatic deployment) of an R MLflow model is currently not supported. | Create a custom container with `plumber` for deployment. |
6161
| Scoring an R model with batch endpoints isn't supported. | |
62-
| AzureML online deployment yml can only use image URIs directly from the registry for the environment specification; not pre-built environments from the same Dockerfile. | Follow the steps in [How to deploy a registered R model to an online (real time) endpoint](how-to-r-azure-ml-deploy-r-model.md) for the correct way to deploy. |
62+
| AzureML online deployment yml can only use image URIs directly from the registry for the environment specification; not pre-built environments from the same Dockerfile. | Follow the steps in [How to deploy a registered R model to an online (real time) endpoint](how-to-r-deploy-r-model.md) for the correct way to deploy. |
6363

6464

6565

6666
## Next steps
6767

6868
Learn more about R in Azure Machine Learning:
6969

70-
* [Interactive R development](how-to-r-azure-ml-interactive-development.md)
71-
* [Adapt your R script to run in production](how-to-r-azure-ml-modify-script-for-production.md)
72-
* [How to train R models in Azure Machine Learning](how-to-r-azure-ml-train-model.md)
73-
* [How to deploy an R model to an online (real time) endpoint](how-to-r-azure-ml-deploy-r-model.md)
70+
* [Interactive R development](how-to-r-interactive-development.md)
71+
* [Adapt your R script to run in production](how-to-r-modify-script-for-production.md)
72+
* [How to train R models in Azure Machine Learning](how-to-r-train-model.md)
73+
* [How to deploy an R model to an online (real time) endpoint](how-to-r-deploy-r-model.md)

articles/machine-learning/how-to-r-azure-ml-train-model.md renamed to articles/machine-learning/how-to-r-train-model.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.devlang: r
1515

1616
[!INCLUDE [cli v2](../../includes/machine-learning-cli-v2.md)]
1717

18-
This article explains how to take the R script that you [adapted to run in production](how-to-r-azure-ml-modify-script-for-production.md) and set it up to run as an R job using the AzureML CLI V2.
18+
This article explains how to take the R script that you [adapted to run in production](how-to-r-modify-script-for-production.md) and set it up to run as an R job using the AzureML CLI V2.
1919

2020
> [!NOTE]
2121
> Although the title of this article refers to _training_ a model, you can actually run any kind of R script as long as it meets the requirements listed in the adapting article.
@@ -26,7 +26,7 @@ This article explains how to take the R script that you [adapted to run in produ
2626
- [A registered data asset](how-to-create-data-assets.md) that your training job will use.
2727
- Azure [CLI and ml extension installed](how-to-configure-cli.md). Or use a [compute instance in your workspace](quickstart-create-resources.md), which has the CLI pre-installed.
2828
- [A compute cluster](how-to-create-attach-compute-cluster.md) or [compute instance](quickstart-create-resources.md#create-compute-instance) to run your training job.
29-
- [An R environment](how-to-r-azure-ml-modify-script-for-production.md#create-an-environment) for the compute cluster to use to run the job.
29+
- [An R environment](how-to-r-modify-script-for-production.md#create-an-environment) for the compute cluster to use to run the job.
3030

3131
## Create a folder with this structure
3232

@@ -44,7 +44,7 @@ Create this folder structure for your project:
4444
> All source code goes in the `src` directory.
4545
4646
* The **r-source.R** file is the R script that you adapted to run in production
47-
* The **azureml_utils.R** file is necessary. The source code is shown [here](how-to-r-azure-ml-modify-script-for-production.md#source-the-azureml_utilsr-helper-script)
47+
* The **azureml_utils.R** file is necessary. The source code is shown [here](how-to-r-modify-script-for-production.md#source-the-azureml_utilsr-helper-script)
4848

4949

5050

@@ -103,7 +103,7 @@ Find these values from [Azure Machine Learning studio](https://ml.azure.com):
103103
1. In the upper right Azure Machine Learning studio toolbar, select your workspace name.
104104
1. You can copy the values from the section that appears.
105105
106-
:::image type="content" source="media/how-to-r-azure-ml-train-model/find-values.png" alt-text="Screenshot: Find the values to use in your CLI command." lightbox="media/how-to-r-azure-ml-train-model/find-values.png":::
106+
:::image type="content" source="media/how-to-r-train-model/find-values.png" alt-text="Screenshot: Find the values to use in your CLI command." lightbox="media/how-to-r-train-model/find-values.png":::
107107
108108
To submit the job, run the following commands in a terminal window:
109109
@@ -165,4 +165,4 @@ You'll see a confirmation that the model is registered.
165165

166166
## Next steps
167167

168-
Now that you have a registered model, learn [How to deploy an R model to an online (real time) endpoint](how-to-r-azure-ml-deploy-r-model.md).
168+
Now that you have a registered model, learn [How to deploy an R model to an online (real time) endpoint](how-to-r-deploy-r-model.md).

articles/machine-learning/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ landingContent:
7373
- text: Use designer (drag-n-drop) in studio
7474
url: tutorial-designer-automobile-price-train-score.md
7575
- text: Train with R
76-
url: how-to-r-azure-ml-train-model.md
76+
url: how-to-r-train-model.md
7777
# Card
7878
- title: Deploy models
7979
linkLists:
@@ -86,7 +86,7 @@ landingContent:
8686
- text: Batch scoring with batch endpoints
8787
url: batch-inference/how-to-use-batch-endpoint.md
8888
- text: Deploy R models
89-
url: how-to-r-azure-ml-deploy-r-model.md
89+
url: how-to-r-deploy-r-model.md
9090

9191
# Card
9292
- title: "Manage the ML lifecycle (MLOps)"

articles/machine-learning/toc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -773,15 +773,15 @@
773773
- name: Use R with Azure ML
774774
items:
775775
- name: Bring R workloads
776-
href: how-to-r-azure-ml-overview-r-capabilities.md
776+
href: how-to-r-overview-r-capabilities.md
777777
- name: Interactive R development
778-
href: how-to-r-azure-ml-interactive-development.md
778+
href: how-to-r-interactive-development.md
779779
- name: Adapt R scripts for production
780-
href: how-to-r-azure-ml-modify-script-for-production.md
780+
href: how-to-r-modify-script-for-production.md
781781
- name: Train R model
782-
href: how-to-r-azure-ml-train-model.md
782+
href: how-to-r-train-model.md
783783
- name: Deploy R model
784-
href: how-to-r-azure-ml-deploy-r-model.md
784+
href: how-to-r-deploy-r-model.md
785785
- name: Troubleshoot & debug
786786
items:
787787
- name: Troubleshoot secure workspace connectivity

0 commit comments

Comments
 (0)