Search Results for

    Show / Hide Table of Contents

    Class BayesPointMachineClassifierIterationChangedEventArgs

    Provides information about the training progress of the Bayes point machine classifiers.

    Inheritance
    Object
    EventArgs
    BayesPointMachineClassifierIterationChangedEventArgs
    Inherited Members
    EventArgs.Empty
    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.Classifier.dll
    Syntax
    public class BayesPointMachineClassifierIterationChangedEventArgs : EventArgs

    Constructors

    BayesPointMachineClassifierIterationChangedEventArgs(Int32, IReadOnlyList<IReadOnlyList<Gaussian>>)

    Initializes a new instance of the BayesPointMachineClassifierIterationChangedEventArgs class given the number of iterations of the training algorithm and the posterior distributions of the weights.

    Declaration
    public BayesPointMachineClassifierIterationChangedEventArgs(int completedIterationCount, IReadOnlyList<IReadOnlyList<Gaussian>> weightPosteriorDistributions)
    Parameters
    Type Name Description
    Int32 completedIterationCount

    The number of iterations the training algorithm completed.

    IReadOnlyList<IReadOnlyList<Gaussian>> weightPosteriorDistributions

    The posterior distributions of the weights.

    Properties

    CompletedIterationCount

    Gets the number of iterations the training algorithm completed.

    Declaration
    public int CompletedIterationCount { get; }
    Property Value
    Type Description
    Int32

    WeightPosteriorDistributions

    Gets the posterior distributions of the weights.

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