-
Notifications
You must be signed in to change notification settings - Fork 525
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
better formulation to wrap-up #784
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR @psteinb! Here are a couple of comments. Also, the linter fail in the CI is because it's configured to 80 characters max.
Being said that, reworking this whole notebook has been in my list of to do's for a long time. In particular, we want to use a more realistic dataset, give interpretation to resulting R2 and MSE scores, and mention the actual good practices for modeling, e.g. aligning the test size of TimeSeriesSplit
with the forecasting task. In case you want to contribute, feel free to submit a more in depth PR.
# i.i.d data. It might lead to absurd results. These absurd results can make you | ||
# think that a predictive model might work while it is not doing so in practice. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# i.i.d data. It might lead to absurd results. These absurd results can make you | |
# think that a predictive model might work while it is not doing so in practice. | |
# i.i.d data. It might lead misleading outcomes, creating the false impression | |
# that a predictive model performs well when it may not be the case in the | |
# intended real-world scenario. |
@@ -220,5 +220,5 @@ | |||
# %% [markdown] | |||
# In conclusion, it is really important to not use an out of the shelves |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think "out of the shelves" is grammatically correct nor a common term for the students to know. Maybe we can rephrase the whole paragraph.
The last sentence of the
cross_validation_time.ipynb
notebook felt a bit convoluted. I tried my best to improve the formulation.