Search Results for

    Show / Hide Table of Contents

    Class ProgressChangedEventArgs

    Provides information about the progress of the inference algorithm, as it is being executed.

    Inheritance
    Object
    EventArgs
    ProgressChangedEventArgs
    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
    Assembly: Microsoft.ML.Probabilistic.dll
    Syntax
    public class ProgressChangedEventArgs : EventArgs

    Constructors

    ProgressChangedEventArgs(Int32)

    Create a ProgressChangedEventArgs with the given iteration number

    Declaration
    public ProgressChangedEventArgs(int iteration)
    Parameters
    Type Name Description
    Int32 iteration

    Properties

    Iteration

    The iteration of inference that has just been completed (the first iteration is 0).

    Declaration
    public int Iteration { get; }
    Property Value
    Type Description
    Int32
    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.