Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion aeon/datasets/_data_writers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
from deprecated.sphinx import deprecated

from aeon.utils.conversion import convert_collection
from aeon.utils.validation import has_missing, is_equal_length
from aeon.utils.validation.collection import (
get_n_cases,
get_n_channels,
get_n_timepoints,
has_missing,
is_collection,
is_equal_length,
)
from aeon.utils.validation.labels import check_classification_y, check_regression_y

Expand Down
4 changes: 2 additions & 2 deletions aeon/transformations/collection/unequal_length/_pad.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Padder(BaseCollectionTransformer):

Parameters
----------
padded_length : int, "min" or "max", default="min"
padded_length : int, "min" or "max", default="max"
Length to pad the series to. If "min", will pad the transformed series to the
shortest series seen in ``fit``. If "max", will pad to the longest series seen
in ``fit``. If an integer, will pad to that length.
Expand Down Expand Up @@ -71,7 +71,7 @@ def __init__(
self,
padded_length="max",
fill_value=0,
add_noise=False,
add_noise=None,
error_on_long=True,
random_state=None,
):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Resizer(BaseCollectionTransformer):

Parameters
----------
resized_length : int, "min" or "max", default="min"
resized_length : int, "min" or "max", default="max"
Length to resize the series to. If "min", will resize the transformed series
to the shortest series seen in ``fit``. If "max", will resize to the longest
series seen in ``fit``. If an integer, will resize to that length.
Expand Down