Commit 9e16bb00 authored by Billy Lamberta's avatar Billy Lamberta
Browse files

Copyedits to _index

parent d2065824
......@@ -63,10 +63,10 @@
"\n",
"This is a [Google Colaboratory](https://colab.sandbox.google.com/notebooks/welcome.ipynb) notebook file. Python programs are run directly in the browser—a great way to learn and use TensorFlow. To run the Colab notebook:\n",
"\n",
"1. Connect to a Python runtime: At the top-right of the menubar, select *CONNECT*.\n",
"1. Connect to a Python runtime: At the top-right of the menu bar, select *CONNECT*.\n",
"2. Run all the notebook code cells: Select *Runtime* > *Run all*.\n",
"\n",
"For more examples and guides, see [Get Started with TensorFlow](https://www.tensorflow.org/get_started/).\n",
"For more examples and guides (including details for this program), see [Get Started with TensorFlow](https://www.tensorflow.org/get_started/).\n",
"\n",
"Let's get started, import the TensorFlow library into your program:"
]
......@@ -96,7 +96,7 @@
},
"cell_type": "markdown",
"source": [
"Load and configure the [MNIST](http://yann.lecun.com/exdb/mnist/) dataset. Convert the samples from integers to a floating-point numbers:"
"Load and prepare the [MNIST](http://yann.lecun.com/exdb/mnist/) dataset. Convert the samples from integers to floating-point numbers:"
]
},
{
......@@ -115,7 +115,6 @@
"mnist = tf.keras.datasets.mnist\n",
"\n",
"(x_train, y_train), (x_test, y_test) = mnist.load_data()\n",
"\n",
"x_train, x_test = x_train / 255.0, x_test / 255.0"
],
"execution_count": 0,
......@@ -195,7 +194,7 @@
},
"cell_type": "markdown",
"source": [
"See [Get Started with TensorFlow](https://www.tensorflow.org/get_started/) for next steps."
"That’s it! You’ve just trained an image classifier with ~98% accuracy on this dataset. See [Get Started with TensorFlow](https://www.tensorflow.org/get_started/) to learn more."
]
}
]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment