Week 3: Using RNNs to predict time series Welcome! In the previous assignment you used a vanilla deep neural network to create forecasts for generated time series. This time you will be using Tensorflow's layers for processing sequence data such as Recurrent layers or LSTMs to see how these two approaches compare. Let's get started! import tensorflow as tf import numpy as np import matplotlib.py..