package trees
Type Members
-
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
- class ModelLeaf[T] extends ModelNode[PredictionResult[T]]
- trait ModelNode[T <: PredictionResult[Any]] extends Serializable
-
class
TrainingLeaf[T] extends TrainingNode[AnyVal, T]
Average the training data to make a leaf prediction
-
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
-
case class
TreeMeta(depth: Int) extends Product with Serializable
Created by maxhutch on 12/21/16.