Ensemble Model not as expected #304
Unanswered
tomneo2004
asked this question in
Q&A
Replies: 1 comment
-
Hey @tomneo2004, Due the inherit randomness in machine learning algorithms, you should expect to see slightly different results to the video. Your model not beating the others is a little strange though. Did you try running the code notebook from the course? (here: https://github.com/mrdbourke/tensorflow-deep-learning/blob/main/10_time_series_forecasting_in_tensorflow.ipynb) If that notebook still doesn't beat it, it's just another example of how strong the naive model is and how poor machine learning models can be at predicting open market data. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the video @mrdbourke able to use ensemble model to beat model_1. However, it is not the case for me.
The result of mean from ensemble model's prediction
{'mae': 582.7927, 'mape': 2.6410944, 'mase': 1.0238054, 'mse': 1183840.5, 'rmse': 1088.0443}
The result of median from ensemble model's prediction
{'mae': 577.1618, 'mape': 2.6071944, 'mase': 1.0139134, 'mse': 1177605.8, 'rmse': 1085.1755}
And the result of model_1
{'mae': 568.95123, 'mape': 2.5448983, 'mase': 0.9994897, 'mse': 1171744.0, 'rmse': 1082.4713}
Naive still the best
{'mae': 567.9802, 'mape': 2.516525, 'mase': 0.99957, 'mse': 1147547.0, 'rmse': 1071.2362}
What could be the issue behind this?
The ensemble model
Train ensemble model
Function for prediction
Make predictions
Predcitions for mean and median
Beta Was this translation helpful? Give feedback.
All reactions