Packages

object GBMSupport extends GBMSupport

Annotations
@Deprecated
Linear Supertypes
GBMSupport, Logging, Serializable, Serializable, Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GBMSupport
  2. GBMSupport
  3. Logging
  4. Serializable
  5. Serializable
  6. Logging
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def GBMModel[T <: Frame](train: T, test: T, response: String, modelId: String = "model", ntrees: Int = 50, depth: Int = 6, family: DistributionFamily = DistributionFamily.AUTO): GBMModel

    Create Gradient Boosting Model for the basic usage.

    Create Gradient Boosting Model for the basic usage. This method exposes the basic configuration of the model. If you need to specify some arguments which are not exposed, please use the DeepLearning model via Sparkling Water pipelines API or using the raw java API

    T

    H2O Frame Type

    train

    frame to train

    test

    test frame

    response

    response column

    modelId

    name of the model

    ntrees

    number of trees

    depth

    depth

    family

    distribution family

    returns

    Gradient Boosting Model

    Definition Classes
    GBMSupport
    Annotations
    @DeprecatedMethod( "ai.h2o.sparkling.ml.algos.H2OGBM" , "3.32" )