From ca58410ed7b089099fa440034b76a560e150a87c Mon Sep 17 00:00:00 2001 From: Ronald Seoh <ronaldseoh@icloud.com> Date: Wed, 21 Oct 2020 13:20:04 -0400 Subject: [PATCH] FL for image classification tutorial: typo fix --- .../tutorials/federated_learning_for_image_classification.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/federated_learning_for_image_classification.ipynb b/docs/tutorials/federated_learning_for_image_classification.ipynb index 5b60c7fb8..045a59005 100644 --- a/docs/tutorials/federated_learning_for_image_classification.ipynb +++ b/docs/tutorials/federated_learning_for_image_classification.ipynb @@ -671,7 +671,7 @@ }, "source": [ "Since the data is already a `tf.data.Dataset`, preprocessing can be accomplished using Dataset transformations. Here, we flatten the `28x28` images\n", - "into `784`-element arrays, shuffle the individual examples, organize them into batches, and renames the features\n", + "into `784`-element arrays, shuffle the individual examples, organize them into batches, and rename the features\n", "from `pixels` and `label` to `x` and `y` for use with Keras. We also throw in a\n", "`repeat` over the data set to run several epochs." ] -- GitLab