Python Deep Learning tutorial: Create a GRU (RNN) in TensorFlow

Posted by Capri Granville on January 27, 2018 at 7:00pm

Guest blog post by Kevin Jacobs.

MLPs (Multi-Layer Perceptrons) are great for many classification and regression tasks. However, it is hard for MLPs to do classification and regression on sequences. In this Python deep learning tutorial, a GRU is implemented in TensorFlow. Tensorflow is one of the many Python Deep Learning libraries.

By the way, another great article on Machine Learning is this article on Machine Learning fraud detection. If you are interested in another article on RNNs, you should definitely read this article on the Elman RNN.

 

What is a GRU or RNN?

A sequence is an ordered set of items and sequences appear everywhere. In the stock market, the closing price is a sequence. Here, time is the ordering. In sentences, words follow a certain ordering. Therefore, sentences can be viewed as sequences. A gigantic MLP could learn parameters based on sequences, but this would be infeasible in terms of computation time. The family of Recurrent Neural Networks (RNNs) solve this by specifying hidden states which do not only depend on the input, but also on the previous hidden state. GRUs are one of the simplest RNNs. Vanilla RNNs are even simpler, but these models suffer from the Vanishing Gradient problem.

[responsive_video type=’youtube’ hide_related=’1′ hide_logo=’0′ hide_controls=’0′ hide_title=’0′ hide_fullscreen=’0′ autoplay=’0′]https://www.youtube.com/watch?v=dFARw8Pm0Gk[/responsive_video]

Mathematical GRU Model

The key idea of GRUs is that the gradient chains do not vanish due to the length of sequences. This is done by allowing the model to pass values completely through the cells. The model is defined as the following [1]:

   

I had a hard time understanding this model, but it turns out that it is not too hard to understand. In the definitions,  is used as the Hadamard product, which is just a fancier name for element-wise multiplication.  is the Sigmoid function which is defined as . Both the Sigmoid function () and the Hyperbolic Tangent function () are used to squish the values between  and .

 functions as a filter for the previous state. If  is low (near ), then a lot of the previous state is reused! The input at the current state () does not influence the output a lot. If  is high, then the output at the current step is influenced a lot by the current input (), but it is not influenced a lot by the previous state ().

 functions as forget gate (or reset gate). It allows the cell to forget certain parts of the state.

The Task: Adding Numbers

In the code example, a simple task is used for testing the GRU. Given two numbers  and , their sum is computed: . The numbers are first converted to reversed bitstrings. The reversal is also what most people would do by adding up two numbers. You start at the right from the number and if the sum is larger than , you carry (memorize) a certain number. The model is capable of learning what to carry. As an example, consider the number  and . In bitstrings (of length 3), we have  and . In reversed bitstring representation, we have that  and . The sum of these numbers is  in reversed bitstring representation. This is  in normal bitstring representation and this is equivalent to . These are all the steps which are also done by the code automatically.

The Code

The code is self-explaining. If you have any questions, feel free to ask! The code can also be found on GitHub. Sharing (or Starring) is Caring :-)!

Results

After ~2000 iterations, the model has fully learned how to add 2 integer numbers!

Conclusion (TL;DR)

This Python deep learning tutorial showed how to implement a GRU in Tensorflow. The implementation of the GRU in TensorFlow takes only ~30 lines of code! There are some issues with respect to parallelization, but these issues can be resolved using the TensorFlow API efficiently. In this tutorial, the model is capable of learning how to add two integer numbers (of any length).

To access the source code and view the original article, click here. 

DSC Resources

  • Services: Hire a Data Scientist | Search DSC | Classifieds | Find a Job
  • Contributors: Post a Blog | Ask a Question
  • Follow us: @DataScienceCtrl | @AnalyticBridge

Popular Articles

  • Difference between Machine Learning, Data Science, AI, Deep Learnin…
  • What is Data Science? 24 Fundamental Articles Answering This Question
  • Hitchhiker’s Guide to Data Science, Machine Learning, R, Python
  • Advanced Machine Learning with Basic Excel

 

Content retrieved from: https://www.datasciencecentral.com/profiles/blogs/gru-implementation-in-tensorflow.

gareth

I am in my late 40's and originally grew up in New Zealands Bay of Islands. When I'm not reading textbooks and coding I am usually weight lifting or if lucky enjoying New Zealand beautiful outdoors. My favorite destination these days is the beautiful Queenstown

Share
Published by
gareth

Recent Posts

Transfer Learning –Deep Learning for Everyone

Posted by William Vorhies on April 17, 2018 at 12:25pm View Blog Summary: Deep Learning,…

8 years ago

Goodbye Age of Hadoop – Hello Cambrian Explosion of Deep Learning

Posted by William Vorhies on March 20, 2017 at 4:48pm View Blog Summary:  Some observations…

8 years ago

Open Source Deep Learning Frameworks and Visual Analytics

Posted by Shay Pal on January 31, 2018 at 4:16pm This was originally posted here…

8 years ago

An Executive Primer to Deep Learning

Posted by Pradeep Menon on February 20, 2018 at 4:30pm Circa 1997, the reigning world…

8 years ago

Top libraries for Distributed Deep Learning

Posted by Packt Publishing on June 13, 2018 at 12:30am The performance of the neural…

8 years ago

Automated Deep Learning – So Simple Anyone Can Do It

Posted by William Vorhies on April 10, 2018 at 8:18am View Blog Summary:  There are…

8 years ago