Skip to content

viniciusov/candy-production

Repository files navigation

About

This repository is related to the Candy Production Dataset.
In this dataset, is given the US Candy Production by Month (candy_production.csv).

Analysis

Plotting the US Candy Production by Month and the Monthly production, it's easy to see that we have a seasonality in this data.
Thus, I splitted the data set into a Train and a Test set, keeping the last 12 months as an unseen data for this last one.

When you talk about time series predictions, there are two main cells that can deliver good results in a RNN (Recurrent Neural Network). They are the LSTM (Long Short Term Memory) and the GRU (Gated recurrent units).

Dealing with these two different cells, it's expected to get 2 different results (predictions), so I thought it'd be better to make to separated analysis.

You can check them here:

Results

The final results are pretty good for simple RNN networks, showing that is possible to predict the production with good accuracy.

LSTM:
LSTM

GRU:
GRU