IProgressEntry.SetProgress Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
SetProgress(Int32, Double) |
Set the progress value for the index |
SetProgress(Int32, Double, Double) |
Set the progress value for the index |
- Source:
- IProgressChannel.cs
- Source:
- IProgressChannel.cs
- Source:
- IProgressChannel.cs
Set the progress value for the index index
to value
,
and the limit value for the progress becomes 'unknown'.
public void SetProgress(int index, double value);
abstract member SetProgress : int * double -> unit
Public Sub SetProgress (index As Integer, value As Double)
Parameters
- index
- Int32
- value
- Double
Applies to
ML.NET 4.0.0 and other versions
Product | Versions |
---|---|
ML.NET | 1.0.0, 1.1.0, 1.2.0, 1.3.1, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 2.0.0, 3.0.0, Preview, 4.0.0 |
- Source:
- IProgressChannel.cs
- Source:
- IProgressChannel.cs
- Source:
- IProgressChannel.cs
Set the progress value for the index index
to value
,
and the limit value to lim
. If lim
is a NAN, it is set to null instead.
public void SetProgress(int index, double value, double lim);
abstract member SetProgress : int * double * double -> unit
Public Sub SetProgress (index As Integer, value As Double, lim As Double)
Parameters
- index
- Int32
- value
- Double
- lim
- Double
Applies to
ML.NET 4.0.0 and other versions
Product | Versions |
---|---|
ML.NET | 1.0.0, 1.1.0, 1.2.0, 1.3.1, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 2.0.0, 3.0.0, Preview, 4.0.0 |