Class BayesPointMachineClassifierIterationChangedEventArgs
Provides information about the training progress of the Bayes point machine classifiers.
Inherited Members
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>> |