You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doc: fix typos in PyTorch CIFAR-10 notebook (#1650)
* fix typos in PyTorch CIFAR-10 notebook
* deliberately raise error to test PR build
* Revert "deliberately raise error to test PR build"
This reverts commit 7c2bac3.
Copy file name to clipboardExpand all lines: sagemaker-python-sdk/pytorch_cnn_cifar10/pytorch_local_mode_cifar10.ipynb
+17-8Lines changed: 17 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@
4
4
"cell_type": "markdown",
5
5
"metadata": {},
6
6
"source": [
7
-
"# PyTorch Cifar10 local training \n",
7
+
"# PyTorch CIFAR-10 local training \n",
8
8
"\n",
9
-
"## Pre-requisites\n",
9
+
"## Prerequisites\n",
10
10
"\n",
11
11
"This notebook shows how to use the SageMaker Python SDK to run your code in a local container before deploying to SageMaker's managed training or hosting environments. This can speed up iterative testing and debugging while using the same familiar Python SDK interface. Just change your estimator's `train_instance_type` to `local` (or `local_gpu` if you're using an ml.p2 or ml.p3 notebook instance).\n",
12
12
"\n",
13
-
"In order to use this feature you'll need to install docker-compose (and nvidia-docker if training with a GPU).\n",
13
+
"In order to use this feature, you'll need to install docker-compose (and nvidia-docker if training with a GPU).\n",
14
14
"\n",
15
-
"**Note, you can only run a single local notebook at one time.**"
15
+
"**Note: you can only run a single local notebook at one time.**"
16
16
]
17
17
},
18
18
{
@@ -30,7 +30,7 @@
30
30
"source": [
31
31
"## Overview\n",
32
32
"\n",
33
-
"The **SageMaker Python SDK** helps you deploy your models for training and hosting in optimized, productions ready containers in SageMaker. The SageMaker Python SDK is easy to use, modular, extensible and compatible with TensorFlow, MXNet, PyTorch and Chainer. This tutorial focuses on how to create a convolutional neural network model to train the [Cifar10 dataset](https://www.cs.toronto.edu/~kriz/cifar.html) using **PyTorch in local mode**.\n",
33
+
"The **SageMaker Python SDK** helps you deploy your models for training and hosting in optimized, productions ready containers in SageMaker. The SageMaker Python SDK is easy to use, modular, extensible and compatible with TensorFlow, MXNet, PyTorch. This tutorial focuses on how to create a convolutional neural network model to train the [CIFAR-10 dataset](https://www.cs.toronto.edu/~kriz/cifar.html) using **PyTorch in local mode**.\n",
34
34
"\n",
35
35
"### Set up the environment\n",
36
36
"\n",
@@ -80,7 +80,7 @@
80
80
"cell_type": "markdown",
81
81
"metadata": {},
82
82
"source": [
83
-
"### Download the Cifar10 dataset"
83
+
"### Download the CIFAR-10 dataset"
84
84
]
85
85
},
86
86
{
@@ -290,8 +290,17 @@
290
290
"pygments_lexer": "ipython2",
291
291
"version": "2.7.14"
292
292
},
293
-
"notice": "Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with the License. A copy of the License is located at http://aws.amazon.com/apache2.0/ or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License."
293
+
"notice": "Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with the License. A copy of the License is located at http://aws.amazon.com/apache2.0/ or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.",
0 commit comments