Conversation
…sonality before stationarity check
* Fixes LearningShapelets masking issue with Keras 3.14 (#660) * Fixes masking issue with Keras 3.14 (after keras-team/keras#21946) * Update changelog * Test against Keras nightly (#661) * Test against Keras nightly * Fixes LearningShapelets masking issue with Keras 3.14 (#660) (#662) * Fixes masking issue with Keras 3.14 (after keras-team/keras#21946) * Update changelog * Parallelize dtw barycenter computation (#658) * Parallelize dtw barycenter computation * Add tests * Update changelog * docs: add MacOS SSL certificate note to datasets module (#663) On MacOS, downloading datasets may fail with SSL certificate errors unless certificates are installed for the Python runtime. This adds a note to the datasets module docstring explaining the fix. Fixes #396 Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> --------- Co-authored-by: Matt Van Horn <mvanhorn@users.noreply.github.com> Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #665 +/- ##
==========================================
+ Coverage 93.67% 93.97% +0.30%
==========================================
Files 73 76 +3
Lines 6953 7335 +382
==========================================
+ Hits 6513 6893 +380
- Misses 440 442 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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
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.
Add VARIMA and AutoVARIMA models for forecasting.
Supports naive seasonality.
Supports variable length TS.
VARIMA uses scipy nelder-mead optimization when q>0
AutoVARIMA uses statsmodels kpss tests for stationarity
Based on https://otexts.com/fpp3/
TODO: