This is a wrapper around the h2o::h2o.predict() function that will return a list
object with a lot of useful and easy to use tidy style information.
Arguments
- .input
This is the output of the
hai_kmeans_automl()function.
Details
This function will internally take in the output assigned from the
hai_kmeans_automl() function only and return a list of useful
information. The items that are returned are as follows:
prediction - The h2o dataframe of predictions
prediction_tbl - The h2o predictions in tibble format
valid_tbl - The validation data in tibble format
pred_full_tbl - The entire validation set with the predictions attached using
base::cbind(). The predictions are in a column calledpredicted_clusterand are in the formate of a factor usingforcats::as_factor()
Examples
if (FALSE) { # \dontrun{
h2o.init()
output <- hai_kmeans_automl(
.data = iris,
.predictors = c("Sepal.Width", "Sepal.Length", "Petal.Width", "Petal.Length"),
.standardize = FALSE
)
pred <- hai_kmeans_automl_predict(output)
h2o.shutdown()
} # }
