Hi, I've a problem with running cross validation o...
# mlforecast
k
Hi, I've a problem with running cross validation on Spark. I have several additional features which all are dynamic.
Copy code
cv = fcst.cross_validation(
    spark_train_df,
    n_windows=n_windows,
    h=h,
    static_features=[],
)
I tried to run cv.show() but I keep getting a KeyError that these features aren't found in index. On local works just fine.
j
Hey. Can you provide the full error?