class BestModel extends Model[BestModel] with ComplexParamsWritable with Wrappable with HasBestModel with BasicLogging

Model produced by FindBestModel.

Linear Supertypes
BasicLogging, HasBestModel, Wrappable, RWrappable, PythonWrappable, BaseWrappable, ComplexParamsWritable, MLWritable, Model[BestModel], Transformer, PipelineStage, Logging, Params, Serializable, Serializable, Identifiable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BestModel
  2. BasicLogging
  3. HasBestModel
  4. Wrappable
  5. RWrappable
  6. PythonWrappable
  7. BaseWrappable
  8. ComplexParamsWritable
  9. MLWritable
  10. Model
  11. Transformer
  12. PipelineStage
  13. Logging
  14. Params
  15. Serializable
  16. Serializable
  17. Identifiable
  18. AnyRef
  19. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BestModel()
  2. new BestModel(uid: String)

Value Members

  1. val allModelMetrics: DataFrameParam
  2. val bestModel: TransformerParam
    Definition Classes
    HasBestModel
  3. val bestModelMetrics: DataFrameParam
  4. final def clear(param: Param[_]): BestModel.this.type
    Definition Classes
    Params
  5. def copy(extra: ParamMap): BestModel
    Definition Classes
    BestModel → Model → Transformer → PipelineStage → Params
  6. def explainParam(param: Param[_]): String
    Definition Classes
    Params
  7. def explainParams(): String
    Definition Classes
    Params
  8. final def extractParamMap(): ParamMap
    Definition Classes
    Params
  9. final def extractParamMap(extra: ParamMap): ParamMap
    Definition Classes
    Params
  10. final def get[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  11. def getAllModelMetrics: Dataset[_]

    Gets a table of metrics from all models compared from the evaluation comparison.

    Gets a table of metrics from all models compared from the evaluation comparison.

    returns

    The model metrics results from all models.

  12. def getBestModel: Transformer

    The best model found during evaluation.

    The best model found during evaluation.

    returns

    The best model.

    Definition Classes
    HasBestModel
  13. def getBestModelMetrics: Dataset[_]

    Gets all of the best model metrics results from the evaluator.

    Gets all of the best model metrics results from the evaluator.

    returns

    All of the best model metrics results.

  14. final def getDefault[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  15. final def getOrDefault[T](param: Param[T]): T
    Definition Classes
    Params
  16. def getParam(paramName: String): Param[Any]
    Definition Classes
    Params
  17. def getRocCurve: Dataset[_]

    Gets the ROC curve with TPR, FPR.

    Gets the ROC curve with TPR, FPR.

    returns

    The evaluation results.

  18. def getScoredDataset: DataFrame

    Gets the scored dataset.

    Gets the scored dataset.

    returns

    The scored dataset for the best model.

  19. final def hasDefault[T](param: Param[T]): Boolean
    Definition Classes
    Params
  20. def hasParam(paramName: String): Boolean
    Definition Classes
    Params
  21. def hasParent: Boolean
    Definition Classes
    Model
  22. final def isDefined(param: Param[_]): Boolean
    Definition Classes
    Params
  23. final def isSet(param: Param[_]): Boolean
    Definition Classes
    Params
  24. def logClass(): Unit
    Definition Classes
    BasicLogging
  25. def logFit[T](f: ⇒ T): T
    Definition Classes
    BasicLogging
  26. def logPredict[T](f: ⇒ T): T
    Definition Classes
    BasicLogging
  27. def logTrain[T](f: ⇒ T): T
    Definition Classes
    BasicLogging
  28. def logTransform[T](f: ⇒ T): T
    Definition Classes
    BasicLogging
  29. def logVerb[T](verb: String, f: ⇒ T): T
    Definition Classes
    BasicLogging
  30. def makePyFile(conf: CodegenConfig): Unit
    Definition Classes
    PythonWrappable
  31. def makeRFile(conf: CodegenConfig): Unit
    Definition Classes
    RWrappable
  32. lazy val params: Array[Param[_]]
    Definition Classes
    Params
  33. var parent: Estimator[BestModel]
    Definition Classes
    Model
  34. def pyAdditionalMethods: String
    Definition Classes
    PythonWrappable
  35. def pyInitFunc(): String
    Definition Classes
    PythonWrappable
  36. val rocCurve: DataFrameParam
  37. def save(path: String): Unit
    Definition Classes
    MLWritable
    Annotations
    @Since( "1.6.0" ) @throws( ... )
  38. val scoredDataset: DataFrameParam
  39. final def set[T](param: Param[T], value: T): BestModel.this.type
    Definition Classes
    Params
  40. def setAllModelMetrics(v: DataFrame): BestModel.this.type
  41. def setBestModel(v: Transformer): BestModel.this.type
    Definition Classes
    HasBestModel
  42. def setBestModelMetrics(v: DataFrame): BestModel.this.type
  43. def setParent(parent: Estimator[BestModel]): BestModel
    Definition Classes
    Model
  44. def setRocCurve(v: DataFrame): BestModel.this.type
  45. def setScoredDataset(v: DataFrame): BestModel.this.type
  46. def toString(): String
    Definition Classes
    Identifiable → AnyRef → Any
  47. def transform(dataset: Dataset[_]): DataFrame
    Definition Classes
    BestModel → Transformer
  48. def transform(dataset: Dataset[_], paramMap: ParamMap): DataFrame
    Definition Classes
    Transformer
    Annotations
    @Since( "2.0.0" )
  49. def transform(dataset: Dataset[_], firstParamPair: ParamPair[_], otherParamPairs: ParamPair[_]*): DataFrame
    Definition Classes
    Transformer
    Annotations
    @Since( "2.0.0" ) @varargs()
  50. def transformSchema(schema: StructType): StructType
    Definition Classes
    BestModel → PipelineStage
  51. val uid: String
    Definition Classes
    BestModelBasicLogging → Identifiable
  52. val ver: String
    Definition Classes
    BasicLogging
  53. def write: MLWriter
    Definition Classes
    ComplexParamsWritable → MLWritable