class MultiTaskTrainingNode extends AnyRef
Node in a multi-task training tree, which can produce nodes for its model trees. Splits are chosen using a MultiTaskSplitter, which considers the sum impurity decrease across all tasks.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MultiTaskTrainingNode
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new MultiTaskTrainingNode(inputs: Seq[(Vector[AnyVal], Array[AnyVal], Double)], numFeatures: Int, maxDepth: Int, minInstances: Int, randomizePivotLocation: Boolean = false, rng: Random = Random)
- inputs
data on which to select splits and form models
- numFeatures
to randomly select from at each split (negative values indicate that all features should be considered)
- maxDepth
to grow the tree to
- minInstances
minimum number of training instances per leaf
- randomizePivotLocation
whether to generate splits randomly between the data points
- rng
random number generator, for reproducibility
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val deltaImpurity: Double
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getFeatureImportance(index: Int): ArraySeq[Double]
- def getNode(index: Int): ModelNode[PredictionResult[Any]]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val leftChild: Option[MultiTaskTrainingNode]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val rightChild: Option[MultiTaskTrainingNode]
- val split: Split
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()