All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.databricks.labs.automl.pipeline.HasFeatureColumn.scala Maven / Gradle / Ivy

The newest version!
package com.databricks.labs.automl.pipeline

import org.apache.spark.ml.param.{Param, Params}

/**
  * @author Jas Bali
  *
  */
trait HasFeatureColumn extends Params {

  final val featureCol: Param[String] = new Param[String](this, "featureCol", "Feature Column Name")

  def setFeatureCol(value: String): this.type = set(featureCol, value)

  def getFeatureCol: String = $(featureCol)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy