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 June 20, 2026, 9:07 a.m.