m = NeuralProphet(
n_forecasts=3,
n_lags=3,
learning_rate=0.1,
normalize=False
)
m = m.highlight_nth_step_ahead_of_each_forecast(3)
metrics = m.fit(df, freq="D")

I only put 2 and 3 data. Likewise When you put binary data like 0 and 1, 1 and -1 another value is added to the middle line of the data to start the analysis. How can I fix this situation that occurs when I put in binary time series data?
and this problem occurs when using lag .
I only put 2 and 3 data. Likewise When you put binary data like 0 and 1, 1 and -1 another value is added to the middle line of the data to start the analysis. How can I fix this situation that occurs when I put in binary time series data?
and this problem occurs when using lag .