CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
y33-j3T

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: y33-j3T/Coursera-Deep-Learning
Path: blob/master/Sequences, Time Series and Prediction/Week 1 - Sequences and Prediction/Week_1_Exercise_Question.ipynb
Views: 13373
Kernel: Python 3
#@title Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License.
import tensorflow as tf print(tf.__version__) # EXPECTED OUTPUT # 2.0.0-beta1 (or later)
import numpy as np import matplotlib.pyplot as plt import tensorflow as tf from tensorflow import keras def plot_series(time, series, format="-", start=0, end=None): plt.plot(time[start:end], series[start:end], format) plt.xlabel("Time") plt.ylabel("Value") plt.grid(True) def trend(time, slope=0): return slope * time def seasonal_pattern(season_time): """Just an arbitrary pattern, you can change it if you wish""" return np.where(season_time < 0.1, np.cos(season_time * 7 * np.pi), 1 / np.exp(5 * season_time)) def seasonality(time, period, amplitude=1, phase=0): """Repeats the same pattern at each period""" season_time = ((time + phase) % period) / period return amplitude * seasonal_pattern(season_time) def noise(time, noise_level=1, seed=None): rnd = np.random.RandomState(seed) return rnd.randn(len(time)) * noise_level time = np.arange(4 * 365 + 1, dtype="float32") baseline = 10 series = trend(time, 0.1) baseline = 10 amplitude = 40 slope = 0.01 noise_level = 2 # Create the series series = baseline + trend(time, slope) + seasonality(time, period=365, amplitude=amplitude) # Update with noise series += noise(time, noise_level, seed=42) plt.figure(figsize=(10, 6)) plot_series(time, series) plt.show() # EXPECTED OUTPUT # Chart as in the screencast. First should have 5 distinctive 'peaks'

Now that we have the time series, let's split it so we can start forecasting

split_time = # YOUR CODE HERE time_train = time[:split_time] x_train = series[:split_time] time_valid = time[split_time:] x_valid = series[split_time:] plt.figure(figsize=(10, 6)) plot_series(time_train, x_train) plt.show() plt.figure(figsize=(10, 6)) plot_series(time_valid, x_valid) plt.show() # EXPECTED OUTPUT # Chart WITH 4 PEAKS between 50 and 65 and 3 troughs between -12 and 0 # Chart with 2 Peaks, first at slightly above 60, last at a little more than that, should also have a single trough at about 0

Naive Forecast

naive_forecast = series[#YOUR CODE HERE]
plt.figure(figsize=(10, 6)) plot_series(time_valid, x_valid) plot_series(time_valid, naive_forecast) # Expected output: Chart similar to above, but with forecast overlay

Let's zoom in on the start of the validation period:

plt.figure(figsize=(10, 6)) plot_series(# YOUR CODE HERE) plot_series(# YOUR CODE HERE) # EXPECTED - Chart with X-Axis from 1100-1250 and Y Axes with series value and projections. Projections should be time stepped 1 unit 'after' series

Now let's compute the mean squared error and the mean absolute error between the forecasts and the predictions in the validation period:

print(# YOUR CODE HERE) print(# YOUR CODE HERE) # Expected Output # 19.578304 # 2.6011968

That's our baseline, now let's try a moving average:

def moving_average_forecast(series, window_size): """Forecasts the mean of the last few values. If window_size=1, then this is equivalent to naive forecast""" # YOUR CODE HERE
moving_avg = moving_average_forecast(# YOUR CODE HERE)[# YOUR CODE HERE] plt.figure(figsize=(10, 6)) plot_series(time_valid, x_valid) plot_series(time_valid, moving_avg) # EXPECTED OUTPUT # CHart with time series from 1100->1450+ on X # Time series plotted # Moving average plotted over it
print(# YOUR CODE HERE) print(# YOUR CODE HERE) # EXPECTED OUTPUT # 65.786224 # 4.3040023
diff_series = (# YOUR CODE HERE) diff_time = # YOUR CODE HERE plt.figure(figsize=(10, 6)) plot_series(diff_time, diff_series) plt.show() # EXPECETED OUTPUT: CHart with diffs

Great, the trend and seasonality seem to be gone, so now we can use the moving average:

diff_moving_avg = # YOUR CODE HERE plt.figure(figsize=(10, 6)) plot_series(time_valid, # YOUR CODE HERE) plot_series(time_valid, # YOUR CODE HERE) plt.show() # Expected output. Diff chart from 1100->1450 + # Overlaid with moving average

Now let's bring back the trend and seasonality by adding the past values from t – 365:

diff_moving_avg_plus_past = # YOUR CODE HERE plt.figure(figsize=(10, 6)) plot_series(time_valid, # YOUR CODE HERE) plot_series(time_valid, # YOUR CODE HERE) plt.show() # Expected output: Chart from 1100->1450+ on X. Same chart as earlier for time series, but projection overlaid looks close in value to it
print(# YOUR CODE HERE) print(# YOUR CODE HERE) # EXPECTED OUTPUT # 8.498155 # 2.327179

Better than naive forecast, good. However the forecasts look a bit too random, because we're just adding past values, which were noisy. Let's use a moving averaging on past values to remove some of the noise:

diff_moving_avg_plus_smooth_past = # YOUR CODE HERE plt.figure(figsize=(10, 6)) plot_series(time_valid, # YOUR CODE HERE) plot_series(time_valid, # YOUR CODE HERE) plt.show() # EXPECTED OUTPUT: # Similar chart to above, but the overlaid projections are much smoother
print(# YOUR CODE HERE) print(# YOUR CODE HERE) # EXPECTED OUTPUT # 12.527958 # 2.2034433