Skip to content

Commit 45fe2d4

Browse files
author
Larry Franks
committed
fixing links
1 parent 108e6ae commit 45fe2d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/machine-learning/v1/how-to-extend-prebuilt-docker-image-inference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ docker build -f <above dockerfile> -t <image_name>:<tag> .
5353
> [!TIP]
5454
> More details about `docker build` can be found here in the [Docker documentation](https://docs.docker.com/engine/reference/commandline/build/).
5555
56-
If the `docker build` command isn't available locally, use the Azure Container Registry ACR for your Azure Machine Learning Workspace to build the Docker image in the cloud. For more information, see [Tutorial: Build and deploy container images with Azure Container Registry](../container-registry/container-registry-tutorial-quick-task.md).
56+
If the `docker build` command isn't available locally, use the Azure Container Registry ACR for your Azure Machine Learning Workspace to build the Docker image in the cloud. For more information, see [Tutorial: Build and deploy container images with Azure Container Registry](/azure/container-registry/container-registry-tutorial-quick-task).
5757

5858
> [!IMPORTANT]
5959
> Microsoft recommends that you first validate that your Dockerfile works locally before trying to create a custom base image via Azure Container Registry.

articles/machine-learning/v1/how-to-prebuilt-docker-images-inference-python-extensibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: deploy, docker, prebuilt, sdkv1, event-tier1-build-2022
1717

1818
[!INCLUDE [sdk v1](../../../includes/machine-learning-sdk-v1.md)]
1919

20-
The [prebuilt Docker images for model inference](concept-prebuilt-docker-images-inference.md) contain packages for popular machine learning frameworks. There are two methods that can be used to add Python packages __without rebuilding the Docker image__:
20+
The [prebuilt Docker images for model inference](../concept-prebuilt-docker-images-inference.md) contain packages for popular machine learning frameworks. There are two methods that can be used to add Python packages __without rebuilding the Docker image__:
2121

2222
* [Dynamic installation](#dynamic): This approach uses a [requirements](https://pip.pypa.io/en/stable/cli/pip_install/#requirements-file-format) file to automatically restore Python packages when the Docker container boots.
2323

@@ -152,7 +152,7 @@ Here are some things that may cause this problem:
152152
| Solution | Create a `requirements.txt` that installs the specified packages when the container starts. | Create a local Python environment with all of the dependencies. Mount this directory into container at runtime. |
153153
| Package Installation | No extra installation (assuming pip already installed) | Virtual environment or conda environment installation. |
154154
| Virtual environment Setup | No extra setup of virtual environment required, as users can pull the current local user environment with pip freeze as needed to create the `requirements.txt`. | Need to set up a clean virtual environment, may take extra steps depending on the current user local environment. |
155-
| [Debugging](how-to-inference-server-http.md) | Easy to set up and debug server, since dependencies are clearly listed. | Unclean virtual environment could cause problems when debugging of server. For example, it may not be clear if errors come from the environment or user code. |
155+
| [Debugging](../how-to-inference-server-http.md) | Easy to set up and debug server, since dependencies are clearly listed. | Unclean virtual environment could cause problems when debugging of server. For example, it may not be clear if errors come from the environment or user code. |
156156
| Consistency during scaling out | Not consistent as dependent on external PyPi packages and users pinning their dependencies. These external downloads could be flaky. | Relies solely on user environment, so no consistency issues. |
157157

158158
* Why are my `requirements.txt` and mounted dependencies directory not found in the container?

0 commit comments

Comments
 (0)