Views
No views yet
| Model | RMSE | MAPE |
|---|---|---|
| ARIMA | 15.7959 | 0.0857 |
| LSTM | 5.8747 | 0.0305 |
| Model | RMSE (avg) | MAPE (avg) |
|---|---|---|
| ARIMA (Rolling Window) | 3.448 | 0.0304 |
| LSTM (Rolling Window) | 23.282 | 0.1869 |


Jalal10/DataSynthis_ML_JobTasklstm_stock_model.h5) and usage instructions1from huggingface_hub import hf_hub_download
2import tensorflow as tf
3
4# Download model
5model_path = hf_hub_download(repo_id="Jalal10/DataSynthis_ML_JobTask", filename="lstm_stock_model.h5")
6
7# Load model
8model = tf.keras.models.load_model(model_path)