File tree Expand file tree Collapse file tree 1 file changed +16
-7
lines changed
aeon/transformations/collection/dictionary_based Expand file tree Collapse file tree 1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -747,13 +747,22 @@ def _get_test_params(cls, parameter_set="default"):
747
747
`MyClass(**params)` or `MyClass(**params[i])` creates a valid test instance.
748
748
"""
749
749
# small window size for testing
750
- params = {
751
- "word_length" : 4 ,
752
- "window_size" : 4 ,
753
- "return_sparse" : False ,
754
- "feature_selection" : "chi2" ,
755
- "alphabet_size" : 2 ,
756
- }
750
+ params = [
751
+ {
752
+ "word_length" : 4 ,
753
+ "window_size" : 4 ,
754
+ "return_sparse" : False ,
755
+ "feature_selection" : "chi2" ,
756
+ "alphabet_size" : 2 ,
757
+ },
758
+ {
759
+ "word_length" : 4 ,
760
+ "window_size" : 4 ,
761
+ "return_sparse" : True ,
762
+ "feature_selection" : "chi2" ,
763
+ "alphabet_size" : 2 ,
764
+ },
765
+ ]
757
766
return params
758
767
759
768
def __getstate__ (self ):
You can’t perform that action at this time.
0 commit comments