-
Notifications
You must be signed in to change notification settings - Fork 5
feat(KDP): adding timeseries features functionality and layers #29
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
Contributor
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.
Copilot reviewed 73 out of 74 changed files in this pull request and generated 2 comments.
Files not reviewed (1)
- Makefile: Language not supported
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
github-actions bot
pushed a commit
that referenced
this pull request
May 28, 2025
## 1.11.0 (2025-05-28) * feat(KDP): adding new layers / features to timeseries ([519bb06](519bb06)) * feat(KDP): adding timeseries features ([7e819dc](7e819dc)) * feat(KDP): adding timeseries features functionality and layers (#29) ([ff38437](ff38437)), closes [#29](#29) * feat(KDP): adding timeseries inference formatter ([c83cd48](c83cd48)) * fix(KDP): fix pre-commit ([e1f77f4](e1f77f4)) * fix(KDP): fixing docs plugin ([21dba63](21dba63)) * fix(KDP): fixing symbolic tensors shape calculations ([d810e62](d810e62)) * fix(KDP): getting rid of hardcoded test requirements ([849a982](849a982)) * fix(KDP): removing print and replacing by logger ([2333152](2333152)) * docs(KDP): correctly referencing timeseries features ([13e4511](13e4511)) * docs(KDP): extending docs and tests for timeseries features ([37f4f24](37f4f24)) * test(KDP): adding more timeseries feature tests ([8c317bf](8c317bf)) * ops(KDP): cleaning workflows ([37da166](37da166)) * ops(KDP): fix docs release errors ([b8972c4](b8972c4)) * ops(KDP): fixing release ([37474e7](37474e7)) * ops(KDP): improve release workflow ([2504321](2504321)) * ops(KDP): updating after release notes ([cc41dad](cc41dad))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the
Makefile, new example scripts, and updates to thekdplibrary, primarily focused on enhancing time series feature processing and improving documentation generation.Makefile Updates:
generate_all_diagramstarget to generate and organize all diagrams in one step, and deprecated the oldgenerate_doc_contenttarget. Updated other targets to usegenerate_all_diagramsinstead. [1] [2] [3]New Example Scripts:
examples/time_series_features_example.pydemonstrating the use of new time series feature layers likeWaveletTransformLayerandTSFreshFeatureLayer.Documentation and Code Quality:
# ruff: noqa: E402to the top of example scripts to ignore import order warnings. [1] [2]ideas.mdwith advanced suggestions for enhancing time series preprocessing capabilities.kdpLibrary Enhancements:TimeSeriesFeatureto thekdplibrary's__init__.pyto include it in the public API. [1] [2]from_configmethods for better serialization and deserialization. [1] [2] [3] [4] [5]kdp.layers.time_seriesmodule to include new layers likeLagFeatureLayer,RollingStatsLayer, andWaveletTransformLayer.