June 2016
Beginner to intermediate
304 pages
6h 24m
English
Recurrent neural networks are really good at analyzing sequential and time-series data. You can learn more about them at http://www.wildml.com/2015/09/recurrent-neural-networks-tutorial-part-1-introduction-to-rnns. When we deal with sequential and time-series data, we cannot just extend generic models. The temporal dependencies in the data are really important, and we need to account for this in our models. Let's look at how to build them.
import numpy as np import matplotlib.pyplot as plt import neurolab as nl
def create_waveform(num_points): # ...