This project is to implement Stacked LSTM and NeuralProphet built with PyTorch to predict stock prices using time series forecasting.
RMSE for Training Data: 21.365121039720137 RMSE for Test Data: 87.65722205877714
RMSE for Training Data: 1.3481472663070373 RMSE for Test Data: 36.35974877025983
The significantly lower RMSE values obtained by NeuralProphet compared to Stacked LSTM indicate that NeuralProphet outperforms the Stacked LSTM model in terms of predictive accuracy on both the training and test datasets. This suggests that NeuralProphet may be a more suitable choice for time series forecasting tasks, offering better performance with less complexity in model architecture and tuning.

