-
Notifications
You must be signed in to change notification settings - Fork 683
[ENH] EXPERIMENTAL: Example notebook based on the new data pipeline #1813
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
base: main
Are you sure you want to change the base?
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Hi @fkiraly, I am getting this error: I just downloaded the notebook from colab and pasted it in the repo, is there anything else I should do to avoid this? Really have no idea 😅 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1813 +/- ##
=======================================
Coverage ? 83.14%
=======================================
Files ? 61
Lines ? 6153
Branches ? 0
=======================================
Hits ? 5116
Misses ? 1037
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Hi @phoeenniixx , the implementation looks good and insightful. Here are some questions that I have about the implementation. Its possible that there is difference between the objectives we had with DSIPTS and SKTIME, still I would like to discuss about your pov wrt sktime.
|
Thank you for the review @xandie985!
So right now we assume that data could fit in the memory, but yes, in future we plan to add features like chunking, on-demand loading etc
These are some open questions, we still need to work on - We will tackle these questions in future iterations once an end-to-end prototype is ready and we get some reviews from the users of the package on this prototype. |
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.
More detailed review.
- please remove the install from the start of the notebook
- we should test that this is running, while we are working on v2. One way is to move the content to
docs/examples/tutorials
, the contents of which are automatically run an tested. - the data generation cell is useful, but not too illustrative. Can you move the code to a function
load_toydata
or similar, inpytorch_forecasting.data
, new module, e.g.,toydata
? Then we can also use this in testing later! - can you add basic markdown cells that explain what the notebook is showing, and what each steps are? E.g., a summary at the top of the multiple steps, and then again small headers for the steps with minimal explanations.
Thanks! I would make the changes accordingly, Just one doubt:
I think we can add it to |
Makes sense, to add it to the established location with data loaders. Would it make sense to split the file up and have on loader per file? Need not be done in this PR. |
Then I think we need to should create a new folder called |
Description
This PR adds example notebook for the new v2 data pipeline vignette, having the basic implementation of the tft model using this version. For more info see #1812 , #1811
Colab link: https://colab.research.google.com/drive/148MyhcNfYEh4CZ6vBXLqQNsUBF0n6_0v?usp=sharing