Andreas Kaae
05/15/2024, 9:08 AMdate_features
are implemented by default in mlforecast? And is there a overview about how they are treated? For instance is the dayofweek
one-hot-encoded, ordinal, cyclic etc.?Andreas Kaae
05/23/2024, 2:05 PMcategorical_featuers
parameter in the library together with MLForecast?José Morales
05/23/2024, 4:30 PMcategorical_features
argument defaults to 'auto'
, which means to treat every pandas categorical column as a categorical feature. So the easiest way would be to have those columns as categoricals. You can do that either with a scikit-learn pipeline or with custom date features