This tutorial contains a high-level description of the MNIST model, instructions on downloading the MNIST TensorFlow TPU code sample, and a guide to running the code on Cloud TPU.
Disclaimer
This tutorial uses a third-party dataset. Google provides no representation, warranty, or other guarantees about the validity, or any other aspects of this dataset.
Model description
The MNIST dataset contains a large number of images of hand-written digits in the range 0 to 9, as well as the labels identifying the digit in each image.
This tutorial trains a machine learning model to classify images based on the MNIST dataset. After training, the model classifies incoming images into 10 categories (0 to 9) based on what it's learned about handwritten images from the MNIST dataset. You can then send the model an image that it hasn't seen before, and the model identifies the digit in the image based on what the model has learned during training.
The MNIST dataset has been split into three parts:
- 60,000 examples of training data
- 10,000 examples of test data
- 5,000 examples of validation data
You can find more information about the dataset at the MNIST database site.
The model has a mixture of seven layers:
- 2 x convolution
- 2 x max pooling
- 2 x dense (fully connected)
- 1 x dropout
Loss is computed via categorical cross entropy.
This version of the MNIST model uses the Keras API, a recommended way to build and run a machine learning model on a Cloud TPU.
Keras simplifies the model development process by hiding most of the low-level implementation, which also makes it easy to switch between TPU and other test platforms such as GPUs or CPUs.
Objectives
- Create a Cloud Storage bucket to hold your dataset and model output.
- Run the training job.
- Verify the output results.
Costs
This tutorial uses billable components of Google Cloud, including:- Compute Engine
- Cloud TPU
- Cloud Storage
Use the pricing calculator to generate a cost estimate based on your projected usage. New Google Cloud users might be eligible for a free trial.
Before you begin
This section provides information on setting up Cloud Storage bucket and a Compute Engine VM.
Open a Cloud Shell window.
Create a variable for your project's ID.
export PROJECT_ID=project-id
Configure
gcloud
command-line tool to use the project where you want to create Cloud TPU.gcloud config set project ${PROJECT_ID}
The first time you run this command in a new Cloud Shell VM, an
Authorize Cloud Shell
page is displayed. ClickAuthorize
at the bottom of the page to allowgcloud
to make GCP API calls with your credentials.Create a Service Account for the Cloud TPU project.
gcloud beta services identity create --service tpu.googleapis.com --project $PROJECT_ID
The command returns a Cloud TPU Service Account with following format:
service-PROJECT_NUMBER@cloud-tpu.iam.gserviceaccount.com
Create a Cloud Storage bucket using the following command:
gsutil mb -p ${PROJECT_ID} -c standard -l us-central1 -b on gs://bucket-name
This Cloud Storage bucket stores the data you use to train your model and the training results. The
gcloud
command used in this tutorial sets up default permissions for the Cloud TPU Service Account you set up in the previous step. If you want finer-grain permissions, review the access level permissions.Launch a Compute Engine VM and Cloud TPU using the
gcloud
command.$ gcloud compute tpus execution-groups create \ --name=mnist-tutorial \ --zone=us-central1-b \ --tf-version=2.4.1 \ --machine-type=n1-standard-1 \ --accelerator-type=v3-8
Command flag descriptions
name
- The name of the Cloud TPU to create.
zone
- The zone where you plan to create your Cloud TPU.
tf-version
- The version of Tensorflow the
gcloud
command installs on your VM. machine-type
- The machine type of the Compute Engine VM to create.
accelerator-type
- The type of the Cloud TPU to create.
For more information on the
gcloud
command, see the gcloud Reference.When the
gcloud compute tpus execution-groups
command has finished executing, verify that your shell prompt has changed fromusername@projectname
tousername@vm-name
. This change shows that you are now logged into your Compute Engine VM.gcloud compute ssh mnist-tutorial --zone=us-central1-b
As you continue these instructions, run each command that begins with
(vm)$
in your VM session window.Create an environment variable for the TPU name.
(vm)$ export TPU_NAME=mnist-tutorial
Install an extra package.
The MNIST training application requires an extra package. Install it now:
(vm)$ sudo pip3 install tensorflow-model-optimization>=0.1.3
Single Cloud TPU device training
The source code for the MNIST TPU model is available on GitHub.
Set the following variables. Replace bucket-name with your bucket name:
(vm)$ export STORAGE_BUCKET=gs://bucket-name
(vm)$ export MODEL_DIR=${STORAGE_BUCKET}/mnist (vm)$ export DATA_DIR=${STORAGE_BUCKET}/data (vm)$ export PYTHONPATH="${PYTHONPATH}:/usr/share/models"
Change to directory that stores the model:
(vm)$ cd /usr/share/models/official/vision/image_classification
Run the MNIST training script:
(vm)$ python3 mnist_main.py \ --tpu=${TPU_NAME} \ --model_dir=${MODEL_DIR} \ --data_dir=${DATA_DIR} \ --train_epochs=10 \ --distribution_strategy=tpu \ --download
Command flag descriptions
tpu
- The name of the Cloud TPU. If not specified when setting up the Compute Engine VM and Cloud TPU, defaults to your username.
model_dir
- The Cloud Storage bucket where checkpoints and summaries are stored during training. You can use an existing folder to load previously generated checkpoints created on a TPU of the same size and TensorFlow version.
data_dir
- The Cloud Storage path of training input. It is set to the fake_imagenet dataset in this example.
train_epochs
- The number of epochs to train the model.
distribution_strategy
- To train the ResNet model on a Cloud TPU, set
distribution_strategy
totpu
. download
- When set to
true
, the script downloads and preprocesses the MNIST dataset, if it hasn't been downloaded already.
The training script runs in under 5 minutes on a v3-8 Cloud TPU and displays output similar to:
Run stats: { 'accuracy_top_1': 0.9762369990348816, 'eval_loss': 0.07863274961709976, 'loss': 0.1111728847026825, 'training_accuracy_top_1': 0.966645359992981 }
Cleaning up
To avoid incurring charges to your Google Cloud account for the resources used in this tutorial, either delete the project that contains the resources, or keep the project and delete the individual resources.
Disconnect from the Compute Engine instance, if you have not already done so:
(vm)$ exit
Your prompt should now be
username@projectname
, showing you are in the Cloud Shell.Delete your Cloud TPU and Compute Engine resources.
$ gcloud compute tpus execution-groups delete mnist-tutorial \ --zone=us-central1-b
Verify the resources have been deleted by running
gcloud compute tpus execution-groups list
. The deletion might take several minutes. A response like the one below indicates your instances have been successfully deleted.$ gcloud compute tpus execution-groups list --zone=us-central1-b
NAME STATUS
Delete your Cloud Storage bucket using
gsutil
as shown below. Replace bucket-name with the name of your Cloud Storage bucket.$ gsutil rm -r gs://bucket-name
What's next
In this tutorial you have trained the MNIST model using a sample dataset. The results of this training are (in most cases) not usable for inference. To use a model for inference you can train the data on a publicly available dataset or your own data set. Models trained on Cloud TPUs require datasets to be in TFRecord format.
You can use the dataset conversion tool sample to convert an image classification dataset into TFRecord format. If you are not using an image classification model, you will have to convert your dataset to TFRecord format yourself. For more information, see TFRecord and tf.Example
Hyperparameter tuning
To improve the model's performance with your dataset, you can tune the model's hyperparameters. You can find information about hyperparameters common to all TPU supported models on GitHub. Information about model-specific hyperparameters can be found in the source code for each model. For more information on hyperparameter tuning, see Overview of hyperparameter tuning, Using the Hyperparameter tuning service and Tune hyperparameters.
Inference
Once you have trained your model you can use it for inference (also called prediction). AI Platform is a cloud-based solution for developing, training, and deploying machine learning models. Once a model is deployed, you can use the AI Platform Prediction service.
- Run a Cloud TPU colab that demonstrates how to run an image classification model using your own image data.
- Explore the other Cloud TPU tutorials.
- Learn to use the TPU monitoring tools in TensorBoard.
- Verify performance on a large-scale model by running the ResNet sample.