Skip to content

Commit 0a87b5a

Browse files
Merge pull request #1990 from MaoXianXin:typo_fix
PiperOrigin-RevId: 420965444
2 parents 764e230 + d7013b8 commit 0a87b5a

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

site/en/guide/checkpoint.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,6 @@
683683
"colab": {
684684
"collapsed_sections": [],
685685
"name": "checkpoint.ipynb",
686-
"provenance": [],
687686
"toc_visible": true
688687
},
689688
"kernelspec": {

site/en/r1/tutorials/images/transfer_learning.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@
547547
"\n",
548548
"# Freeze all the layers before the `fine_tune_at` layer\n",
549549
"for layer in base_model.layers[:fine_tune_at]:\n",
550-
" layer.trainable = False"
550+
" layer.trainable = False"
551551
]
552552
},
553553
{

site/en/tutorials/images/data_augmentation.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@
937937
"outputs": [],
938938
"source": [
939939
"cropped = tf.image.central_crop(image, central_fraction=0.5)\n",
940-
"visualize(image,cropped)"
940+
"visualize(image, cropped)"
941941
]
942942
},
943943
{
@@ -989,7 +989,7 @@
989989
"Note: `seed` is a `Tensor` of shape `(2,)` whose values are any integers.\n",
990990
"\n",
991991
"In the following sections, you will:\n",
992-
"1. Go over examples of using random image operations to transform an image; and\n",
992+
"1. Go over examples of using random image operations to transform an image.\n",
993993
"2. Demonstrate how to apply random transformations to a training dataset."
994994
]
995995
},
@@ -1174,7 +1174,7 @@
11741174
},
11751175
"outputs": [],
11761176
"source": [
1177-
"# Create a `Counter` object and `Dataset.zip` it together with the trainining set.\n",
1177+
"# Create a `Counter` object and `Dataset.zip` it together with the training set.\n",
11781178
"counter = tf.data.experimental.Counter()\n",
11791179
"train_ds = tf.data.Dataset.zip((train_datasets, (counter, counter)))"
11801180
]

site/en/tutorials/images/transfer_learning.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@
839839
"\n",
840840
"# Freeze all the layers before the `fine_tune_at` layer\n",
841841
"for layer in base_model.layers[:fine_tune_at]:\n",
842-
" layer.trainable = False"
842+
" layer.trainable = False"
843843
]
844844
},
845845
{

site/en/tutorials/keras/regression.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@
768768
},
769769
"outputs": [],
770770
"source": [
771-
"plot_horsepower(x,y)"
771+
"plot_horsepower(x, y)"
772772
]
773773
},
774774
{

0 commit comments

Comments
 (0)