feat: implement PatchTST v2 architecture#2099
Open
amruth6002 wants to merge 3 commits intosktime:mainfrom
Open
feat: implement PatchTST v2 architecture#2099amruth6002 wants to merge 3 commits intosktime:mainfrom
amruth6002 wants to merge 3 commits intosktime:mainfrom
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #2099 +/- ##
=======================================
Coverage ? 86.64%
=======================================
Files ? 172
Lines ? 9927
Branches ? 0
=======================================
Hits ? 8601
Misses ? 1326
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:
|
PranavBhatP
reviewed
Mar 4, 2026
| from pytorch_forecasting.models.base._tslib_base_model_v2 import TslibBaseModel | ||
|
|
||
|
|
||
| class _Transpose(nn.Module): |
Contributor
There was a problem hiding this comment.
Please move this to the _layers folder under the correct subdirectory, if it already exists, reuse.
Contributor
Author
There was a problem hiding this comment.
done , please recheck.
PranavBhatP
reviewed
Mar 4, 2026
| return x.transpose(*self.dims) | ||
|
|
||
|
|
||
| class _FlattenHead(nn.Module): |
Contributor
Author
There was a problem hiding this comment.
done , please recheck
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.
Reference Issues/PRs
Closes #2067
What does this implement/fix? Explain your changes.
This PR introduces the PatchTST architecture to the
pytorch-forecastingv2 interface.The implementation adapts the core "Channel Independence" patching mechanism and self-attention encoder from the original
thumlimplementation to align with theTslibBaseModelstandards.Key Additions:
sktimecompatibility and automated testing scaffolding.pytestconventions.All pre-commit hooks and unit tests pass successfully.