-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUG, ENH] SFA fix: Std-Normalization, as used in BOSS and WEASEL mod…
…els, is potentially harmful for lower bounding (#2461) This fixes an issue with std normalization in SFA, as is commonly used for BOSS and WEASEL models. For Lower Bounding computations this however adds a potential violation of the lower bounding distance. Thus, I remove it, if whole series matching is applied.
- Loading branch information
1 parent
66128de
commit 26dfdd2
Showing
7 changed files
with
379 additions
and
105 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
"""Transformers.""" | ||
|
||
__all__ = ["PAA", "SFA", "SFAFast", "SAX", "BORF"] | ||
__all__ = ["PAA", "SFA", "SFAFast", "SFAWhole", "SAX", "BORF"] | ||
|
||
from aeon.transformations.collection.dictionary_based._borf import BORF | ||
from aeon.transformations.collection.dictionary_based._paa import PAA | ||
from aeon.transformations.collection.dictionary_based._sax import SAX | ||
from aeon.transformations.collection.dictionary_based._sfa import SFA | ||
from aeon.transformations.collection.dictionary_based._sfa_fast import SFAFast | ||
from aeon.transformations.collection.dictionary_based._sfa_whole import SFAWhole |
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.