Skip to content

Commit

Permalink
seed parameter put to end
Browse files Browse the repository at this point in the history
  • Loading branch information
lucifer4073 committed Mar 8, 2025
1 parent f6cc5ba commit 17002b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aeon/classification/shapelet_based/_rsast.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def __init__(
nb_inst_per_class=10,
random_state=None,
classifier=None,
seed=None,
n_jobs=1,
seed=None,
):
super().__init__()
self.n_random_points = n_random_points
Expand Down
2 changes: 1 addition & 1 deletion aeon/classification/shapelet_based/_sast.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def __init__(
nb_inst_per_class: int = 1,
random_state: Optional[int] = None,
classifier=None,
seed: int = None,
n_jobs: int = 1,
seed: int = None,
) -> None:
super().__init__()
self.length_list = length_list
Expand Down
2 changes: 1 addition & 1 deletion aeon/transformations/collection/shapelet_based/_rsast.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ def __init__(
n_random_points: int = 10,
len_method: str = "both",
nb_inst_per_class: int = 10,
seed=None,
random_state: Optional[int] = None,
n_jobs: int = 1, # Parllel Processing
seed=None,
):
self.n_random_points = n_random_points
self.len_method = len_method
Expand Down
2 changes: 1 addition & 1 deletion aeon/transformations/collection/shapelet_based/_sast.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ def __init__(
stride: int = 1,
nb_inst_per_class: int = 1,
random_state: Optional[int] = None,
seed: int = None,
n_jobs: int = 1, # Parallel processing
seed: int = None,
):
super().__init__()
self.lengths = lengths
Expand Down

0 comments on commit 17002b3

Please sign in to comment.