package gpr

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

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 : 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.