Search Results for

    Show / Hide Table of Contents

    Class EntityPosteriorDistribution

    Contains the learned parameters for an entity (user or item).

    Inheritance
    Object
    EntityPosteriorDistribution
    ItemPosteriorDistribution
    UserPosteriorDistribution
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    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>
    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.