cuda_ml_can_predict_class_probabilities {cuda.ml} | R Documentation |
Determine whether a CuML model can predict class probabilities.
Description
Given a trained CuML model, return TRUE
if the model is a classifier
and is capable of outputting class probabilities as prediction results (e.g.,
if the model is a KNN or an ensemble classifier), otherwise return
FALSE
.
Usage
cuda_ml_can_predict_class_probabilities(model)
Arguments
model |
A trained CuML model. |
Value
A logical value indicating whether the model supports outputting class probabilities.
[Package cuda.ml version 0.3.2 Index]