h2o4gpu (version 0.2.0)

fit.h2o4gpu_model: Train an H2O4GPU Estimator

Description

This function builds the model using the training data specified.

Usage

# S3 method for h2o4gpu_model
fit(object, x, y = NULL, ...)

Arguments

object

The h2o4gpu model object

x

The training data where each column represents a different predictor variable to be used in building the model.

y

A vector of numeric values to be used as response variable in building the model. Note that if the vector is character or factor, it will be converted to numeric column (e.g. 0, 1, 2, ...) implicitly. For unsupervised models, this argument can be ignored or specified as NULL.

...

Additional arguments (unused for now).

Examples

Run this code
# NOT RUN {
library(h2o4gpu)

# Setup dataset
x <- iris[1:4]
y <- as.integer(iris$Species) - 1

# Train the classifier
h2o4gpu.random_forest_classifier() %>% fit(x, y)
# }

Run the code above in your browser using DataCamp Workspace