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

com.databricks.labs.automl.pipeline.HasAutoMlIdColumn.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 HasAutoMlIdColumn extends Params {
  final val automlInternalId: Param[String] =
    new Param[String](this, "automlInternalId", "unique identifier column internally generated by AutoML")

  def setAutomlInternalId(value: String): this.type = set(automlInternalId, value)

  def getAutomlInternalId: String = $(automlInternalId)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy