Skip to content

Commit ce14b80

Browse files
authored
Fix H1 headings (#3300)
1 parent bdefae1 commit ce14b80

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

sagemaker-experiments/mnist-handwritten-digits-classification-experiment/mnist-handwritten-digits-classification-experiment.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"## MNIST Handwritten Digits Classification Experiment\n",
7+
"# MNIST Handwritten Digits Classification Experiment\n",
88
"\n",
99
"This demo shows how you can use SageMaker Experiment Management Python SDK to organize, track, compare, and evaluate your machine learning (ML) model training experiments.\n",
1010
"\n",

sagemaker-python-sdk/mxnet_gluon_mnist/mxnet_mnist_with_gluon.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"## MNIST Training with MXNet and Gluon\n",
7+
"# MNIST Training with MXNet and Gluon\n",
88
"\n",
99
"MNIST is a widely used dataset for handwritten digit classification. It consists of 70,000 labeled 28x28 pixel grayscale images of hand-written digits. The dataset is split into 60,000 training images and 10,000 test images. There are 10 classes (one for each of the 10 digits). This tutorial will show how to train and test an MNIST model on SageMaker using MXNet and the Gluon API.\n",
1010
"\n"

sagemaker-script-mode/pytorch_bert/deploy_bert.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"## Hosting a Pretrained Model on SageMaker\n",
7+
"# Hosting a Pretrained Model on SageMaker\n",
88
" \n",
99
"Amazon SageMaker is a service to accelerate the entire machine learning lifecycle. It includes components for building, training and deploying machine learning models. Each SageMaker component is modular, so you're welcome to only use the features needed for your use case. One of the most popular features of SageMaker is [model hosting](https://docs.aws.amazon.com/sagemaker/latest/dg/how-it-works-deployment.html). Using SageMaker Hosting you can deploy your model as a scalable, highly available, multi-process API endpoint with a few lines of code. In this notebook, we will demonstrate how to host a pretrained model (BERT) in Amazon SageMaker to extract embeddings from text.\n",
1010
"\n",

sagemaker_batch_transform/pytorch_mnist_batch_transform/pytorch-mnist-batch-transform.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@
217217
"tags": []
218218
},
219219
"source": [
220-
"# Prepare batch inference data\n",
220+
"## Prepare batch inference data\n",
221221
"\n",
222222
"Convert the test data into PNG image format."
223223
]
@@ -337,7 +337,7 @@
337337
"tags": []
338338
},
339339
"source": [
340-
"# Create model transformer\n",
340+
"## Create model transformer\n",
341341
"Now, we create a transformer object for creating and interacting with Amazon SageMaker transform jobs. We can create the transformer in two ways:\n",
342342
"1. Use a fitted estimator directly.\n",
343343
"1. First create a PyTorchModel from a saved model artifact, and then create a transformer from the PyTorchModel object.\n",

sagemaker_model_monitor/introduction/SageMaker-ModelMonitoring.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"cell_type": "markdown",
9797
"metadata": {},
9898
"source": [
99-
"# PART A: Capturing real-time inference data from Amazon SageMaker endpoints\n",
99+
"## PART A: Capturing real-time inference data from Amazon SageMaker endpoints\n",
100100
"Create an endpoint to showcase the data capture capability in action.\n",
101101
"\n",
102102
"### Upload the pre-trained model to Amazon S3\n",
@@ -294,7 +294,7 @@
294294
"cell_type": "markdown",
295295
"metadata": {},
296296
"source": [
297-
"# PART B: Model Monitor - Baselining and continuous monitoring"
297+
"## PART B: Model Monitor - Baselining and continuous monitoring"
298298
]
299299
},
300300
{

0 commit comments

Comments
 (0)