-
Notifications
You must be signed in to change notification settings - Fork 917
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
Feature/four theta #123
Merged
Merged
Feature/four theta #123
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
01e1837
feat(4Theta): naive implementation of 4Theta model
Droxef f6831be
fix(theta): avoid NaN values in theta, and unnecessary season test
Droxef 53ceeab
feat(gridsearch): add possibility to compare with model.fitted_values
Droxef 7ae0803
feat(4theta): add a method to auto select best model
Droxef 4001009
Merge branch 'develop' of https://github.com/unit8co/darts into feat/…
Droxef 264ddf3
refactor(4Theta): Specify univariate model
Droxef e5bc790
style(4Theta): Fix linter
Droxef e951554
style(4Theta): fix docstring
Droxef f596476
style(4Theta): Fix docstring
Droxef b712c7d
style(4Theta): Change link
Droxef dee5b0d
style(4Theta): Correct docstring
Droxef ba64351
style(4theta): correct ticks in docstring
Droxef 36d99fe
Merge branch 'develop' of https://github.com/unit8co/darts into feat/…
Droxef 1dc5bb3
Merge branch 'develop' of https://github.com/unit8co/darts into feat/…
Droxef 4d24f75
refactor(4Theta): change different modes verification and add Enum
Droxef 240cea4
refactor(theta): replace all string modes by Enum
Droxef 7d5dffa
test(backtesting): Add a test to verify if fitted_values exist
Droxef b19cf97
Fix(Theta): Correct all Enums
Droxef bbd58cc
fix(Theta): compare with enum members value instead. Correct some min…
Droxef 71aa8d3
fix(4theta): move the creation of enums in init file
Droxef 8286062
test(4theta): Add 4Theta to autoregressive test. Move Enums to top in…
Droxef af69e63
test(4theta): Add 4Theta specific test
Droxef 97f6956
style(backtesting): fix lint
Droxef 97cff2a
test(4theta): Add another exception to test
Droxef f6df487
ref(4Theta): mode.fitted_values is now a TimeSeries to be consistent
Droxef 2bad4f7
style(Theta): rename mode to season_mode to be consistent w/ FourTheta
Droxef 49fafda
Merge branch 'develop' of https://github.com/unit8co/darts into feat/…
Droxef fe1b320
docs(thetas): correct errors in the different docs
Droxef fc04e68
refactor(4Theta): Correct
Droxef cae49f6
refactor(backtesting): add a 'use_fitted_values' parameter
Droxef 27b9143
fix(4theta): correct select_best_model
Droxef 2fa7f4f
test(4Theta): add a test for zero mean and correct others
Droxef 5ed92bd
Merge branch 'develop' of https://github.com/unit8co/darts into feat/…
Droxef a2b64e4
style(backtesting): linter formatting
Droxef 98d1b7a
refactor(4Theta): change Enums names, correct theta and backtesting docs
Droxef f405e8b
refactor(4theta): move creation of fitted_values timeseries to backte…
Droxef 9cad7cf
Merge branch 'develop' of https://github.com/unit8co/darts into feat/…
Droxef 1e6be8e
refactor(statistics): include Enums in extract and remove functions
Droxef 2f9bc5b
refactor(4Theta): check earlier if univariate
Droxef a405e47
test(4Theta): correct backtesting and test best_model
Droxef 25f3de2
test(4Theta): add new modes in test models
Droxef e15f52b
docs(4theta): Add a disclaimer for 4theta performance
Droxef 61c0f17
refactor(Theta): change theta to have the same behavior as FourTheta
Droxef e63e215
examples(darts-intro): modify notebook to give the same results
Droxef be1427d
style(4Theta): correct deprecation warning for logger.warn
Droxef 34a8c41
Merge branch 'develop' into feat/FourTheta
hrzn d8e890f
style(4theta): move comment to backtesting
Droxef e02d65d
Merge branch 'feat/FourTheta' of https://github.com/unit8co/darts int…
Droxef 8e92eba
Merge branch 'develop' of https://github.com/unit8co/darts into feat/…
Droxef File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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 let this slip through, thanks!