Alex-Mak-MCW / Air-Quality-Data-Analysis-Project

Group statistical data analysis project serves to analyze the impact of various environmental factors on the concentration of Nitrogen Dioxide (NO2) in an Italian City.
0 stars 0 forks source link

Incorporate Deep Learning for Time Series #3

Open Alex-Mak-MCW opened 1 week ago

Alex-Mak-MCW commented 1 week ago

Things to try:

  1. Recurrent Neural Networks (RNNs): Implement basic RNNs for capturing sequential dependencies in time series data.

  2. Long Short-Term Memory (LSTM): Use LSTMs to model more complex dependencies and long-term sequences.

  3. Gated Recurrent Unit (GRU): Apply GRUs as a simpler alternative to LSTMs.

  4. Convolutional Neural Networks (CNNs): Combine CNNs with LSTMs for feature extraction from time series data.

  5. Seq2Seq Models: Implement sequence-to-sequence models for time series forecasting.

  6. ARIMA-LSTM Hybrid: Combine ARIMA for modeling linear components and LSTMs for non-linear patterns.

  7. DeepAR: Use probabilistic forecasting with models like DeepAR (if working with multiple time series).

  8. State Space Models: Apply deep learning-based state space models for multivariate time series.