-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MNT] Update similarity search with new base classes : Query Search (#…
…1508) * Add query search module and base classes * Add Unequal length support and fix tests * Update similarity_search.rst Fix api doc * Update docstrings and rename q to X * Update test to account for parameter name change * Update test * Fix unequal length mask wrong condition * Remove BaseSimilaritySearch and update tests/notebook * Update test and registry * Fix test lookup * Fix tags * Add back BaseSimilaritySearch * Refactor query search class * update api reference * fix typo in test adapted from old dummy * Fix test fail due to floating point error without numba
- Loading branch information
Showing
21 changed files
with
3,609 additions
and
1,249 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -246,6 +246,7 @@ | |
"early_classifier", | ||
"regressor", | ||
"transformer", | ||
"similarity-search", | ||
"segmenter", | ||
], | ||
"bool", | ||
|
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,13 +1,6 @@ | ||
"""BaseSimilaritySearch.""" | ||
"""Similarity search module.""" | ||
|
||
__all__ = [ | ||
"BaseSimiliaritySearch", | ||
"TopKSimilaritySearch", | ||
"get_speedup_function_names", | ||
] | ||
__all__ = ["BaseSimilaritySearch", "QuerySearch"] | ||
|
||
from aeon.similarity_search.base import ( | ||
BaseSimiliaritySearch, | ||
get_speedup_function_names, | ||
) | ||
from aeon.similarity_search.top_k_similarity import TopKSimilaritySearch | ||
from aeon.similarity_search.base import BaseSimilaritySearch | ||
from aeon.similarity_search.query_search import QuerySearch |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.