Skip to content

Commit

Permalink
check: empty default parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
notaryanramani committed Oct 24, 2024
1 parent 283f3fc commit bdc4bf6
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions aeon/anomaly_detection/_cblof.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,7 @@ def get_test_params(cls, parameter_set="default"):
params : dict
Parameters to create testing instances of the class.
Each dict are parameters to construct an "interesting" test instance, i.e.,
`IsolationForest(**params)` creates a valid test instance.
`MyClass(**params)` or `MyClass(**params[i])` creates a valid test instance.
`create_test_instance` uses the first (or only) dictionary in `params`.
"""
return {
"n_clusters": 4,
"alpha": 0.75,
"beta": 3,
}
return {}

0 comments on commit bdc4bf6

Please sign in to comment.