module Mean_predictor: sig
.. end
Module for making mean predictions
type
t
Type of mean predictors
val calc : Spec.Inducing.t ->
coeffs:Lacaml.D.vec -> t
calc inducing_points ~coeffs
Returns a mean predictor given
inducing_points
and coefficients coeffs
.
val calc_trained : Interfaces.Sigs.Eval.Trained.t -> t
calc_trained trained
Returns a mean predictor given the trained
model.
val get_inducing : t -> Spec.Inducing.t
get_inducing mean_predictor
Returns inducing points associated with
mean_predictor
.
val get_coeffs : t -> Lacaml.D.vec
get_coeffs mean_predictor
Returns coefficients associated with
mean_predictor
.