
com.databricks.labs.automl.pipeline.HasAutoMlIdColumn.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automatedml_2.11 Show documentation
Show all versions of automatedml_2.11 Show documentation
Databricks Labs AutoML toolkit
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