Skip to content

Commit b6bc646

Browse files
Fix typo
1 parent 0fa794b commit b6bc646

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

03_pytorch_computer_vision.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@
11441144
"\n",
11451145
"# Need to setup model with input parameters\n",
11461146
"model_0 = FashionMNISTModelV0(input_shape=784, # one for every pixel (28x28)\n",
1147-
" hidden_units=10, # how many units in the hiden layer\n",
1147+
" hidden_units=10, # how many units in the hidden layer\n",
11481148
" output_shape=len(class_names) # one for every class\n",
11491149
")\n",
11501150
"model_0.to(\"cpu\") # keep model on CPU to begin with "

docs/03_pytorch_computer_vision.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@
936936
"\n",
937937
"# Need to setup model with input parameters\n",
938938
"model_0 = FashionMNISTModelV0(input_shape=784, # one for every pixel (28x28)\n",
939-
" hidden_units=10, # how many units in the hiden layer\n",
939+
" hidden_units=10, # how many units in the hidden layer\n",
940940
" output_shape=len(class_names) # one for every class\n",
941941
")\n",
942942
"model_0.to(\"cpu\") # keep model on CPU to begin with "

0 commit comments

Comments
 (0)