Packages

package trees

Type Members

  1. class InternalModelNode[T <: PredictionResult[Any]] extends ModelNode[T]

    Internal node in the decision tree

    Internal node in the decision tree

    T

    type of the output

  2. class ModelLeaf[T] extends ModelNode[PredictionResult[T]]
  3. trait ModelNode[T <: PredictionResult[Any]] extends Serializable
  4. class TrainingLeaf[T] extends TrainingNode[AnyVal, T]

    Average the training data to make a leaf prediction

  5. abstract class TrainingNode[T <: AnyVal, S] extends Serializable

    Class to provide getNode interface for internal and leaf training nodes Created by maxhutch on 11/29/16.

    Class to provide getNode interface for internal and leaf training nodes Created by maxhutch on 11/29/16.

    T

    type of the input vector

    S

    type of the model output

  6. case class TreeMeta(depth: Int) extends Product with Serializable

    Created by maxhutch on 12/21/16.

Ungrouped