Tahir Uddin Khan
09/01/2024, 5:19 PMauto_mlf = AutoMLForecast(
models={'cat': AutoCatboost()},
freq="D",
season_length=7,
fit_config=lambda trial: {'static_features': ['unique_id']},
)
auto_mlf.fit(
train,
n_windows=4,
h=horizon_to_predict,
num_samples=2
)
Tahir Uddin Khan
09/01/2024, 5:19 PMTahir Uddin Khan
09/01/2024, 5:20 PMCatBoostError: /src/catboost/catboost/libs/data/features_layout.cpp:120: All feature names should be different, but 'year' used more than once.
This happens if i increase the num_samplesJosé Morales
09/02/2024, 3:45 AM