Tests whether the object is an instance of DAIModel.

is.DAIModel(obj)

Arguments

obj

Object

Value

True if the object is an instance of DAIModel class.

Examples

dai.connect(uri = 'http://127.0.0.1:12345', username = 'h2oai', password = 'h2oai')
iris_dai <- as.DAIFrame(iris, progress = FALSE)
model <- dai.train(training_frame = iris_dai,
                   target_col = 'Species',
                   is_classification = TRUE,
                   is_timeseries = FALSE,
                   progress = FALSE)
is.DAIModel(model)