-
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
Feat/torchmetrics #996
Merged
Merged
Feat/torchmetrics #996
Changes from 32 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
23b531a
added droput and batch_norm similiar to nhits' implementation
156e3bb
activation param for nhits
4e7890e
fix
gdevos010 37cb53c
support any pytorch activation function. NHiTs AvgPool1d support
aee0b8f
PR
8aa1948
Update CHANGELOG.md
gdevos010 9053e1d
fixed typo
d6a2c1f
Merge branch 'fix/nbeats-nhits-TODOs' of https://github.com/gdevos010…
63329a6
pytorch lightning did not like saving nn.modules
fc7d55a
first pass
031e743
Merge remote-tracking branch 'origin/HEAD' into torchmetrics
8b62061
metrics now works with likelihood
0516e1d
rename var
gdevos010 68f46a1
made metrics a parameter. Added Tests
gdevos010 51bda3e
Merge branch 'unit8co:master' into feat/torchmetrics
gdevos010 08d74dd
Merge remote-tracking branch 'origin/feat/torchmetrics' into feat/tor…
gdevos010 337c55a
torchmetrics is already a dependency
gdevos010 56755b9
changelog
gdevos010 4231236
Merge branch 'master' into feat/torchmetrics
hrzn 982c297
model now accepts torchmetrics and torchCollections
gdevos010 5d4c2f8
torchmetric example in early stop
gdevos010 2f31df1
handle no metrics
gdevos010 7e5bef0
made _calculate_metrics private
gdevos010 d1f93e3
Ray tune example
gdevos010 06c5510
Ray tune example
gdevos010 1510d36
Merge branch 'master' into feat/torchmetrics
hrzn fb20deb
changelog
gdevos010 88874f6
Merge branch 'master' into feat/torchmetrics
gdevos010 29fd0ab
Update darts/models/forecasting/pl_forecasting_module.py
gdevos010 5340091
Update darts/models/forecasting/pl_forecasting_module.py
gdevos010 4993a9c
added torch_metrics to doc strings in torch based models
gdevos010 6965fe3
added torch_metrics to doc strings in torch based models
gdevos010 38c395e
Update darts/models/forecasting/pl_forecasting_module.py
dennisbader 5682fc3
Merge branch 'master' into feat/torchmetrics
dennisbader d6a0e24
black formatting
dennisbader 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
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
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.
Could you copy paste the docstring into all our TorchForecastingModels (TFTModel, NBEATSModel, ...)? Otherwise this will not be shown in the model documentation.
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.
Added