Views
No views yet
stock_forecasting.py: The main Python script that performs the following:
yahoo_stock.csv dataset.stock_forecast.png).yahoo_stock.csv: The dataset used for training and testing the models.requirements.txt: A list of the Python libraries required to run the script.pip install -r requirements.txtpython stock_forecasting.pystock_forecast.png in the same directory, which contains a plot visualizing the actual stock prices against the ARIMA and LSTM forecasts.Model Performance Comparison
-----------------------------
| Model | RMSE | MAPE (%) |
| :---- | :------ | :------- |
| ARIMA | 278.60 | 7.44 |
| LSTM | 371.12 | 10.35 |
Discussion and Recommendation
------------------------------
Based on the RMSE and MAPE metrics, the ARIMA model performed better than the LSTM model in this particular forecasting task...