CovarianceRegressionResult
Full multivariate-Gaussian posterior. Carries the joint covariance and its lower-triangular Cholesky factor L so samplers can draw w ~ N(mean, cov) as mean + L u, u ~ N(0, I) without redoing the decomposition.
Constructors
Properties
Posterior precision (inverse variance) on the bias term.
Full posterior covariance matrix over weights.
Lower-triangular Cholesky factor of covariance, maintained in lockstep for sampling.
Number of features in weights.
Mean squared error: sse / totalWeights. Zero on an empty stream.
Unbiased sample standard deviation: sqrt([sampleVariance]).
Unbiased sample variance: [sst] / ([totalWeights] - 1). Zero when totalWeights <= 1.
Number of com.eignex.kumulant.core.RegressionStat.update calls absorbed; useful as a bookkeeping counter for learning-rate decay or retraining cadence.
Cumulative observation weight folded in.
Fitted weight per feature, indexed by the same i as the input x[i].
Functions
Linear predictor eta = bias + x . weights, before the inverse link.
Mean response: link.invMean(linearPredictor(x)). For Link.Identity this is the linear predictor itself, matching plain linear regression.
CovarianceRegressionResult
biasPrecision
Posterior precision (inverse variance) on the bias term.
bias
covarianceL
Lower-triangular Cholesky factor of covariance, maintained in lockstep for sampling.
covariance
Full posterior covariance matrix over weights.
link
sse
step
Number of com.eignex.kumulant.core.RegressionStat.update calls absorbed; useful as a bookkeeping counter for learning-rate decay or retraining cadence.
totalWeights
Cumulative observation weight folded in.
weights
Fitted weight per feature, indexed by the same i as the input x[i].