You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In plp there is now a check in checkInputs to stop people from trying to use temporal data on models that don't support it:
if (FeatureExtraction::isTemporalCovariateData(inputs$plpData$covariateData)
&& (is.null(attr(inputs$modelSettings$param, "temporalModel")))) {
stop("Temporal covariates detected but chosen model does not support temporal covariates")
}
This means when we add models that support it here we need to add the temporalModel attribute to modelSettings$param
The text was updated successfully, but these errors were encountered:
In plp there is now a check in
checkInputs
to stop people from trying to use temporal data on models that don't support it:This means when we add models that support it here we need to add the
temporalModel
attribute tomodelSettings$param
The text was updated successfully, but these errors were encountered: