Book Image

Machine Learning with TensorFlow 1.x

By : Quan Hua, Saif Ahmed, Shams Ul Azeem
Book Image

Machine Learning with TensorFlow 1.x

By: Quan Hua, Saif Ahmed, Shams Ul Azeem

Overview of this book

Google's TensorFlow is a game changer in the world of machine learning. It has made machine learning faster, simpler, and more accessible than ever before. This book will teach you how to easily get started with machine learning using the power of Python and TensorFlow 1.x. Firstly, you’ll cover the basic installation procedure and explore the capabilities of TensorFlow 1.x. This is followed by training and running the first classifier, and coverage of the unique features of the library including data ?ow graphs, training, and the visualization of performance with TensorBoard—all within an example-rich context using problems from multiple industries. You’ll be able to further explore text and image analysis, and be introduced to CNN models and their setup in TensorFlow 1.x. Next, you’ll implement a complete real-life production system from training to serving a deep learning model. As you advance you’ll learn about Amazon Web Services (AWS) and create a deep neural network to solve a video action recognition problem. Lastly, you’ll convert the Caffe model to TensorFlow and be introduced to the high-level TensorFlow library, TensorFlow-Slim. By the end of this book, you will be geared up to take on any challenges of implementing TensorFlow 1.x in your machine learning environment.
Table of Contents (13 chapters)
Free Chapter
1
Getting Started with TensorFlow

Saving the model for ongoing use

To save variables from the tensor flow session for future use, you can use the Saver() function. Let's start by creating a saver variable right after the writer variable:

    writer = tf.summary.FileWriter(log_location, session.graph)
saver = tf.train.Saver(max_to_keep=5)

Then, in the training loop, we will add the following code to save the model after every model_saving_step:

 if step % model_saving_step == 0 or step == num_steps + 1: 
   path = saver.save(session, os.path.join(log_location,  
"model.ckpt"), global_step=step) logmanager.logger.info('Model saved in file: %s' % path)

After that, whenever we want to restore the model using the saved model, we can easily create a new Saver() instance and use the restore function as follows:

 checkpoint_path = tf.train.latest_checkpoint(log_location) 
 restorer = tf...