nnmnkwii.preprocessing.adjust_frame_lengths¶
-
nnmnkwii.preprocessing.
adjust_frame_lengths
(x, y, pad=True, ensure_even=False, divisible_by=1, **kwargs)[source]¶ Adjust frame lengths given two feature vectors or matrices.
This ensures that two feature vectors or matrices have same number of frames, by padding to the end or removing the last few frames. Default uses zero-padding.
Warning
ensure_even
is deprecated and will be removed in v0.1.0. Usedivisible_by=2
instead.- Parameters
x (numpy.ndarray) – Input 2d feature matrix, shape (
T^1 x D
).y (numpy.ndarray) – Input 2d feature matrix, shape (
T^2 x D
).pad (bool) – If True, pads values to the end, otherwise removes last few frames to ensure same frame lengths.
divisible_by (int) – If
divisible_by
> 0, number of frames will be adjusted to be divisible bydivisible_by
.kwargs (dict) – Keyword argments passed to
numpy.pad()
. Default is mode =constant
, which means zero padding.
- Returns
Pair of adjusted feature matrices, of each shape (
T x D
).- Return type
Tuple
Examples
>>> from nnmnkwii.preprocessing import adjust_frame_lengths >>> import numpy as np >>> x = np.zeros((10, 1)) >>> y = np.zeros((11, 1)) >>> x, y = adjust_frame_lengths(x, y) >>> assert len(x) == len(y)