```unique_id ds cutoff y Linear 0 AirPassengers 19...
# mlforecast
m
Copy code
unique_id	ds	cutoff	y	Linear
0	AirPassengers	1956-01-01	1955-12-01	284	286.276733
1	AirPassengers	1956-02-01	1955-12-01	277	286.276733
2	AirPassengers	1956-03-01	1955-12-01	317	286.276733
3	AirPassengers	1956-04-01	1955-12-01	313	286.276733
4	AirPassengers	1956-05-01	1955-12-01	318	286.276733
j
You have to provide
static_features=[]
in the cross validation call, otherwise the trend is used as a static feature
m
i have removed the
static_features=[]
from fit but still cross val df is same in all the rows
j
fit and cross validation are different things. And they both need you to set that argument, not removing it
m
i want to Evaluate my model using the
backward trend
. So is there a way we can do that?
Like e.g. :
MSE(df[trend]-df[backward trend])
j
what is the backward trend?
m
i mean the fitted value,
df_backward = fcst.forecast_fitted_values()
j
so the training error?
m
i want to evaluate my model using the forecast_fitted_values data. is that possible?
j
well you have all of the inputs, so you should be able to do it in the same way you've done it in the past