Idris2Doc : Model

Model

Probabilistic models.

Definitions

interfaceProbabilisticModel : Shape->Shape-> ((0_ : Shape) -> (0_ : Nat) ->Type) ->Type->Type
  A `ProbabilisticModel` is a mapping from a feature domain to a probability distribution over
a target domain.

@features The shape of the feature domain.
@targets The shape of the target domain.
@marginal The type of mulitvariate marginal distribution over the target domain.

Parameters: features, targets, marginal, model
Constraints: Distribution marginal
Methods:
marginalise : model->Tensor (Sn::features) F64->Tag (marginaltargets (Sn))
  Return the marginal distribution over the target domain at the specified feature values.
marginalise : ProbabilisticModelfeaturestargetsmarginalmodel=>model->Tensor (Sn::features) F64->Tag (marginaltargets (Sn))
  Return the marginal distribution over the target domain at the specified feature values.

Totality: total
Visibility: public export