R/new_model_multilayer_perceptron.R

Defines functions new_ml_model_multilayer_perceptron_classification

new_ml_model_multilayer_perceptron_classification <- function(pipeline_model, formula, dataset, label_col,
                                                              features_col, predicted_label_col) {
  new_ml_model_classification(
    pipeline_model, formula,
    dataset = dataset,
    label_col = label_col, features_col = features_col,
    predicted_label_col = predicted_label_col,
    class = "ml_model_multilayer_perceptron_classification"
  )
}

Try the sparklyr package in your browser

Any scripts or data that you put into this service are public.

sparklyr documentation built on Nov. 2, 2023, 5:09 p.m.