CSFelix / Sales-Prediction

🌱 Predicting Number of Sales per Product 🌱
GNU General Public License v3.0
8 stars 0 forks source link

🤖 Baseline ML Models #10

Closed CSFelix closed 1 year ago

CSFelix commented 1 year ago
Usefull links
CSFelix commented 1 year ago

Now, even though RNNs are quite powerful, they suffer from Vanishing Gradient Problem which hinders them from using long term information, like they are good for storing memory 3-4 instances of past iterations but larger number of instances don't provide good results so we don't just use regular RNNs. Instead, we use a better variation of RNNs: Long Short Term Networks (LSTM).

CSFelix commented 1 year ago
Components of LSTMs
CSFelix commented 1 year ago

There's no need to use LSTM and GRU since the dataset is not a Time Series at all.

CSFelix commented 1 year ago
Models