Closed ATriantafyllopoulos closed 4 years ago
As far as I see it, the following
audtorch.transforms.EnsureMinimumLength(length=1024, axis=-1)
is completely identical with
audtorch.transforms.Expand(size=1024, method='pad', axis=-1)
isn't it?
You are right! Thanks for noticing, I will close the PR.
Summary
Adds
EnsureMinimumLength
to make sure that an input signal meets some minimum length requirements.