Skip to content

Commit 70038ba

Browse files
authored
Update ReadMe.md
1 parent aaf4dee commit 70038ba

File tree

1 file changed

+2
-2
lines changed
  • advanced_functionality/scikit_bring_your_own/container

1 file changed

+2
-2
lines changed

advanced_functionality/scikit_bring_your_own/container/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ The components are as follows:
2020

2121
* __build\_and\_push.sh__: The script to build the Docker image (using the Dockerfile above) and push it to the [Amazon EC2 Container Registry (ECR)][ecr] so that it can be deployed to SageMaker. Specify the name of the image as the argument to this script. The script will generate a full name for the repository in your account and your configured AWS region. If this ECR repository doesn't exist, the script will create it.
2222

23-
* __im-decision-trees__: The directory that contains the application to run in the container. See the next session for details about each of the files.
23+
* __decision-trees__: The directory that contains the application to run in the container. See the next session for details about each of the files.
2424

2525
* __local-test__: A directory containing scripts and a setup for running a simple training and inference jobs locally so that you can test that everything is set up correctly. See below for details.
2626

2727
### The application run inside the container
2828

29-
When IM starts a container, it will invoke the container with an argument of either __train__ or __serve__. We have set this container up so that the argument in treated as the command that the container executes. When training, it will run the __train__ program included and, when serving, it will run the __serve__ program.
29+
When SageMaker starts a container, it will invoke the container with an argument of either __train__ or __serve__. We have set this container up so that the argument in treated as the command that the container executes. When training, it will run the __train__ program included and, when serving, it will run the __serve__ program.
3030

3131
* __train__: The main program for training the model. When you build your own algorithm, you'll edit this to include your training code.
3232
* __serve__: The wrapper that starts the inference server. In most cases, you can use this file as-is.

0 commit comments

Comments
 (0)