from pmdarima.pipeline import Pipeline
from pmdarima.preprocessing import FourierFeaturizer
pipeline = Pipeline([
("fourier_1", FourierFeaturizer(m=7, k=1)),
("fourier_2", FourierFeaturizer(m=14, k=1)),
])
pipeline.fit_transform(df['value'])
When I run above code. I get following error: TypeError: Last step of Pipeline should be of type BaseARIMA. 'FourierFeaturizer(k=1, m=14)'
I don't wish to use BaseARIMA. Just wish to use FourierFeaturizer is it possible?