Class EntityPosteriorDistribution
Contains the learned parameters for an entity (user or item).
Inherited Members
Namespace: Microsoft.ML.Probabilistic.Learners
Assembly: Microsoft.ML.Probabilistic.Learners.Recommender.dll
Syntax
public abstract class EntityPosteriorDistribution
Remarks
This class is only used for external parameter distribution representation.
Constructors
EntityPosteriorDistribution(IList<Gaussian>, Gaussian)
Initializes a new instance of the EntityPosteriorDistribution class.
Declaration
protected EntityPosteriorDistribution(IList<Gaussian> traits, Gaussian bias)
Parameters
Type | Name | Description |
---|---|---|
IList<Gaussian> | traits | The entity traits. |
Gaussian | bias | The entity bias. |
Properties
Bias
Gets the entity bias.
Declaration
public Gaussian Bias { get; }
Property Value
Type | Description |
---|---|
Gaussian |
Traits
Gets the entity traits.
Declaration
public IList<Gaussian> Traits { get; }
Property Value
Type | Description |
---|---|
IList<Gaussian> |