diff --git a/site/en/guide/checkpoint.ipynb b/site/en/guide/checkpoint.ipynb index 37e96a93b3c..19117c4341f 100644 --- a/site/en/guide/checkpoint.ipynb +++ b/site/en/guide/checkpoint.ipynb @@ -683,7 +683,6 @@ "colab": { "collapsed_sections": [], "name": "checkpoint.ipynb", - "provenance": [], "toc_visible": true }, "kernelspec": { diff --git a/site/en/r1/tutorials/images/transfer_learning.ipynb b/site/en/r1/tutorials/images/transfer_learning.ipynb index bdb05a86382..b98043bcc54 100644 --- a/site/en/r1/tutorials/images/transfer_learning.ipynb +++ b/site/en/r1/tutorials/images/transfer_learning.ipynb @@ -547,7 +547,7 @@ "\n", "# Freeze all the layers before the `fine_tune_at` layer\n", "for layer in base_model.layers[:fine_tune_at]:\n", - " layer.trainable = False" + " layer.trainable = False" ] }, { diff --git a/site/en/tutorials/images/data_augmentation.ipynb b/site/en/tutorials/images/data_augmentation.ipynb index 83438684df1..d7a89c27888 100644 --- a/site/en/tutorials/images/data_augmentation.ipynb +++ b/site/en/tutorials/images/data_augmentation.ipynb @@ -937,7 +937,7 @@ "outputs": [], "source": [ "cropped = tf.image.central_crop(image, central_fraction=0.5)\n", - "visualize(image,cropped)" + "visualize(image, cropped)" ] }, { @@ -989,7 +989,7 @@ "Note: `seed` is a `Tensor` of shape `(2,)` whose values are any integers.\n", "\n", "In the following sections, you will:\n", - "1. Go over examples of using random image operations to transform an image; and\n", + "1. Go over examples of using random image operations to transform an image.\n", "2. Demonstrate how to apply random transformations to a training dataset." ] }, @@ -1174,7 +1174,7 @@ }, "outputs": [], "source": [ - "# Create a `Counter` object and `Dataset.zip` it together with the trainining set.\n", + "# Create a `Counter` object and `Dataset.zip` it together with the training set.\n", "counter = tf.data.experimental.Counter()\n", "train_ds = tf.data.Dataset.zip((train_datasets, (counter, counter)))" ] diff --git a/site/en/tutorials/images/transfer_learning.ipynb b/site/en/tutorials/images/transfer_learning.ipynb index d6d8c7e6092..26dc717857e 100644 --- a/site/en/tutorials/images/transfer_learning.ipynb +++ b/site/en/tutorials/images/transfer_learning.ipynb @@ -839,7 +839,7 @@ "\n", "# Freeze all the layers before the `fine_tune_at` layer\n", "for layer in base_model.layers[:fine_tune_at]:\n", - " layer.trainable = False" + " layer.trainable = False" ] }, { diff --git a/site/en/tutorials/keras/regression.ipynb b/site/en/tutorials/keras/regression.ipynb index ec919ef8907..c2fad15392b 100644 --- a/site/en/tutorials/keras/regression.ipynb +++ b/site/en/tutorials/keras/regression.ipynb @@ -768,7 +768,7 @@ }, "outputs": [], "source": [ - "plot_horsepower(x,y)" + "plot_horsepower(x, y)" ] }, {