From 3d9d69697892fd7678840d8f3351b235961c18e3 Mon Sep 17 00:00:00 2001 From: "Andrew C. Freeman" Date: Mon, 24 May 2021 09:35:56 -0500 Subject: [PATCH] Typo fix --- beginner_source/basics/buildmodel_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner_source/basics/buildmodel_tutorial.py b/beginner_source/basics/buildmodel_tutorial.py index 3c5c57dd9eb..3e027f71103 100644 --- a/beginner_source/basics/buildmodel_tutorial.py +++ b/beginner_source/basics/buildmodel_tutorial.py @@ -97,7 +97,7 @@ def forward(self, x): # Model Layers # ------------------------- # -# Lets break down the layers in the FashionMNIST model. To illustrate it, we +# Let's break down the layers in the FashionMNIST model. To illustrate it, we # will take a sample minibatch of 3 images of size 28x28 and see what happens to it as # we pass it through the network.