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
thanks for letting me know about potential issues! Could you please show me a reproducible example (possibly on some dummy date) so I could explore this myself? Would like to check what exactly went wrong
Hello,
I am not sure if this is an error but when I am using -following- default yhat function
`
"H2OMultinomialModel" = {
if (!inherits(newdata, "H2OFrame")) {
newdata <- h2o::as.h2o(newdata)
}
ret <- as.data.frame(h2o::h2o.predict(X.model, newdata = newdata))
colnames(ret) <- normalize_h2o_names(colnames(ret))
}`
With this prediction function, predict_parts function gives an error related to dimensions.
So I checked yhatranger source code which returns a matrix. So I made the following custom yhat function, and now predict_parts works normally.
`new_custom <- function(X.model, newdata)
{
}`
The text was updated successfully, but these errors were encountered: