Search Results for

    Show / Hide Table of Contents

    Class UserPosteriorDistribution

    Contains the learned parameters for a user.

    Inheritance
    Object
    EntityPosteriorDistribution
    UserPosteriorDistribution
    Inherited Members
    EntityPosteriorDistribution.Traits
    EntityPosteriorDistribution.Bias
    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 class UserPosteriorDistribution : EntityPosteriorDistribution
    Remarks

    This class is only used for external parameter distribution representation.

    Constructors

    UserPosteriorDistribution(IList<Gaussian>, Gaussian, IList<Gaussian>)

    Initializes a new instance of the UserPosteriorDistribution class.

    Declaration
    public UserPosteriorDistribution(IList<Gaussian> traits, Gaussian bias, IList<Gaussian> thresholds)
    Parameters
    Type Name Description
    IList<Gaussian> traits

    The user traits.

    Gaussian bias

    The user bias.

    IList<Gaussian> thresholds

    The user thresholds.

    Properties

    Thresholds

    Gets the user thresholds.

    Declaration
    public IList<Gaussian> Thresholds { get; }
    Property Value
    Type Description
    IList<Gaussian>
    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.