Skip to content

Commit 534971c

Browse files
authored
update urls (aws#64)
1 parent 1618855 commit 534971c

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

advanced_functionality/parquet_to_recordio_protobuf/parquet_to_recordio_protobuf.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229
"\n",
230230
"This example takes four to six minutes to complete. Majority of the time is spent provisioning hardware and loading the algorithm container since the dataset is small.\n",
231231
"\n",
232-
"First, let's specify our containers. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/im-algo-docker-registry-paths.html)."
232+
"First, let's specify our containers. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/sagemaker-algo-docker-registry-paths.html)."
233233
]
234234
},
235235
{

advanced_functionality/scikit_bring_your_own/container/ReadMe.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Bring-your-own Algorithm Sample
22

3-
This example shows how to package an algorithm for use with IM. We have chosen a simple [scikit-learn][skl] implementation of decision trees to illustrate the procedure.
3+
This example shows how to package an algorithm for use with SageMaker. We have chosen a simple [scikit-learn][skl] implementation of decision trees to illustrate the procedure.
44

5-
IM supports two execution modes: _training_ where the algorithm uses input data to train a new model and _serving_ where the algorithm accepts HTTP requests and uses the previously trained model to do an inference (also called "scoring", "prediction", or "transformation").
5+
SageMaker supports two execution modes: _training_ where the algorithm uses input data to train a new model and _serving_ where the algorithm accepts HTTP requests and uses the previously trained model to do an inference (also called "scoring", "prediction", or "transformation").
66

77
The algorithm that we have built here supports both training and scoring in IM with the same container image. It is perfectly reasonable to build an algorithm that supports only training _or_ scoring as well as to build an algorithm that has separate container images for training and scoring.v
88

advanced_functionality/scikit_bring_your_own/container/build_and_push.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
# This script shows how to build the Docker image and push it to ECR to be ready for use
4-
# by IM.
4+
# by SageMaker.
55

66
# The argument to this script is the image name. This will be used as the image on the local
77
# machine and combined with the account and region to form the repository name for ECR.

introduction_to_amazon_algorithms/factorization_machines_mnist/factorization_machines_mnist.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
"\n",
210210
"Again, we'll use the Amazon SageMaker Python SDK to kick off training and monitor status until it is completed. In this example that takes between 7 and 11 minutes. Despite the dataset being small, provisioning hardware and loading the algorithm container take time upfront.\n",
211211
"\n",
212-
"First, let's specify our containers. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/im-algo-docker-registry-paths.html)."
212+
"First, let's specify our containers. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/sagemaker-algo-docker-registry-paths.html)."
213213
]
214214
},
215215
{

introduction_to_amazon_algorithms/linear_learner_mnist/linear_learner_mnist.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@
207207
"\n",
208208
"Again, we'll use the Amazon SageMaker Python SDK to kick off training, and monitor status until it is completed. In this example that takes between 7 and 11 minutes. Despite the dataset being small, provisioning hardware and loading the algorithm container take time upfront.\n",
209209
"\n",
210-
"First, let's specify our containers. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/im-algo-docker-registry-paths.html)."
210+
"First, let's specify our containers. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/sagemaker-algo-docker-registry-paths.html)."
211211
]
212212
},
213213
{

introduction_to_amazon_algorithms/pca_mnist/pca_mnist.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
"\n",
210210
"Again, we'll use the Amazon SageMaker Python SDK to kick off training, and monitor status until it is completed. In this example that takes between 7 and 11 minutes. Despite the dataset being small, provisioning hardware and loading the algorithm container take time upfront.\n",
211211
"\n",
212-
"First, let's specify our containers. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/im-algo-docker-registry-paths.html)."
212+
"First, let's specify our containers. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/sagemaker-algo-docker-registry-paths.html)."
213213
]
214214
},
215215
{

introduction_to_applying_machine_learning/linear_time_series_forecast/linear_time_series_forecast.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@
301301
"---\n",
302302
"## Train\n",
303303
"\n",
304-
"Now we can begin to specify our linear model. First, let's specify the containers for the Linear Learner algorithm. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/im-algo-docker-registry-paths.html)."
304+
"Now we can begin to specify our linear model. First, let's specify the containers for the Linear Learner algorithm. Since we want this notebook to run in all 4 of Amazon SageMaker's regions, we'll create a small lookup. More details on algorithm containers can be found in [AWS documentation](https://docs-aws.amazon.com/sagemaker/latest/dg/sagemaker-algo-docker-registry-paths.html)."
305305
]
306306
},
307307
{

0 commit comments

Comments
 (0)