-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MNT] Purging similarity search from distance as argument numba funct…
…ions (#2176) * WIP purging similarity search from naive functions * Update Docs and testing configs * Removes channel independence, add img, fix and add functions and tests * Update notebook to avoid timeout and remove test from removed func * Update normalize to normalise and tests * Update normalize to normalise and tests * Adjust test to not execute those caused by a known issue and uncomment others * remove float_ and typo * Add similarity search test structure * Add test for data generators similarity search * Add similarity search test structure * Fix tests * Fix tests * test adding back expected results rdst * Add back exclusion for RDSTRegressor * Empty commit for CI * Fix buggy tests * Empty commit for CI --------- Co-authored-by: MatthewMiddlehurst <[email protected]> Co-authored-by: Matthew Middlehurst <[email protected]>
- Loading branch information
1 parent
d59bd25
commit 01495e7
Showing
41 changed files
with
1,553 additions
and
2,182 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
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,24 +1,18 @@ | ||
"""Distance profiles.""" | ||
|
||
__all__ = [ | ||
"naive_distance_profile", | ||
"normalized_naive_distance_profile", | ||
"euclidean_distance_profile", | ||
"normalized_euclidean_distance_profile", | ||
"normalised_euclidean_distance_profile", | ||
"squared_distance_profile", | ||
"normalized_squared_distance_profile", | ||
"normalised_squared_distance_profile", | ||
] | ||
|
||
|
||
from aeon.similarity_search.distance_profiles.euclidean_distance_profile import ( | ||
euclidean_distance_profile, | ||
normalized_euclidean_distance_profile, | ||
) | ||
from aeon.similarity_search.distance_profiles.naive_distance_profile import ( | ||
naive_distance_profile, | ||
normalized_naive_distance_profile, | ||
normalised_euclidean_distance_profile, | ||
) | ||
from aeon.similarity_search.distance_profiles.squared_distance_profile import ( | ||
normalized_squared_distance_profile, | ||
normalised_squared_distance_profile, | ||
squared_distance_profile, | ||
) |
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.