IterationPerformance Constructors
Definition
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.
Overloads
IterationPerformance() |
Initializes a new instance of the IterationPerformance class. |
IterationPerformance(IList<TagPerformance>, Double, Double, Double, Double, Nullable<Double>) |
Initializes a new instance of the IterationPerformance class. |
IterationPerformance()
- Source:
- IterationPerformance.cs
- Source:
- IterationPerformance.cs
Initializes a new instance of the IterationPerformance class.
public IterationPerformance ();
Public Sub New ()
Applies to
IterationPerformance(IList<TagPerformance>, Double, Double, Double, Double, Nullable<Double>)
- Source:
- IterationPerformance.cs
- Source:
- IterationPerformance.cs
Initializes a new instance of the IterationPerformance class.
public IterationPerformance (System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.TagPerformance> perTagPerformance = default, double precision = 0, double precisionStdDeviation = 0, double recall = 0, double recallStdDeviation = 0, double? averagePrecision = default);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.IterationPerformance : System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.TagPerformance> * double * double * double * double * Nullable<double> -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.IterationPerformance
Public Sub New (Optional perTagPerformance As IList(Of TagPerformance) = Nothing, Optional precision As Double = 0, Optional precisionStdDeviation As Double = 0, Optional recall As Double = 0, Optional recallStdDeviation As Double = 0, Optional averagePrecision As Nullable(Of Double) = Nothing)
Parameters
- perTagPerformance
- IList<TagPerformance>
Gets the per-tag performance details for this iteration.
- precision
- Double
Gets the precision.
- precisionStdDeviation
- Double
Gets the standard deviation for the precision.
- recall
- Double
Gets the recall.
- recallStdDeviation
- Double
Gets the standard deviation for the recall.
Applies to
Azure SDK for .NET