Aligner
AlignerNaive
Naive strategies for multiple alignment.
Naive strategies supported by this estimator are:
start: aligns starts (lowest index), does no squeezing/stretching
end: aligns ends (highest index), no squeezing/stretching
start-end: aligns starts and ends, stretches linearly and rounds
Schnellstart
python
from sktime.alignment.naive import AlignerNaive
estimator = AlignerNaive(strategy='start-end')Parameter(1)
- strategy: str, one of “start”, “end”, “start-end” (default)
- start: aligns starts (lowest index), does no squeezing/stretching end: aligns ends (highest index), no squeezing/stretching start-end: aligns starts and ends, stretches linearly and rounds