case class BaggerHelper(models: ParSeq[Model[PredictionResult[Any]]], trainingData: Seq[(Vector[Any], Any)], Nib: Vector[Vector[Int]], useJackknife: Boolean, uncertaintyCalibration: Boolean) extends Product with Serializable
Helper class to subsume shared functionality of Bagger and MultiTaskBagger.
- models
collection of trained models
- trainingData
on which models were trained
- Nib
vector (over models) of vectors (over training data) of the number of repeats in each model's bag
- useJackknife
whether to use jackknife for uncertainty quantification
- uncertaintyCalibration
whether to apply empirical uncertainty calibration
- Attributes
- protected
- Alphabetic
- By Inheritance
- BaggerHelper
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
BaggerHelper(models: ParSeq[Model[PredictionResult[Any]]], trainingData: Seq[(Vector[Any], Any)], Nib: Vector[Vector[Int]], useJackknife: Boolean, uncertaintyCalibration: Boolean)
- models
collection of trained models
- trainingData
on which models were trained
- Nib
vector (over models) of vectors (over training data) of the number of repeats in each model's bag
- useJackknife
whether to use jackknife for uncertainty quantification
- uncertaintyCalibration
whether to apply empirical uncertainty calibration
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
- val Nib: Vector[Vector[Int]]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
lazy val
biasTraining: Seq[(Vector[Any], Double)]
Data on which to train a bias learner.
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val isRegression: Boolean
- val models: ParSeq[Model[PredictionResult[Any]]]
-
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()
-
lazy val
oobErrors: Seq[(Vector[Any], Double, Double)]
Seq of tuples containing training data paired with their out-of-bag residuals and uncertainty estimates.
-
val
ratio: Double
Calculate the uncertainty calibration ratio, which is the 68th percentile of error/uncertainty.
Calculate the uncertainty calibration ratio, which is the 68th percentile of error/uncertainty. for the training points. If a point has 0 uncertainty, the ratio is 1 iff error is also 0, or infinity otherwise.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val trainingData: Seq[(Vector[Any], Any)]
- val uncertaintyCalibration: Boolean
- val useJackknife: Boolean
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )