Introduction to RNNs

To understand RNNs, we have to understand the basics of feedforward neural networks. You can refer to Chapter 3, Optimization for Neural Networks, for details on feedforward networks. Both feedforward and recurrent neural networks are identified from the way they process the information or features through a series of mathematical operations performed at the various nodes of the network. One feeds information straight through (never touching a given node twice), the other cycles it through a loop.

A feedforward neural network is trained on image data until it minimizes the loss or error while predicting or classifying the categories for image types. With the trained set of hyper parameters or weights, the neural network ...

Get Neural Network Programming with TensorFlow now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.