Share via


TagPerformance Constructors

Definition

Overloads

TagPerformance()

Initializes a new instance of the TagPerformance class.

TagPerformance(Guid, String, Double, Double, Double, Double, Nullable<Double>)

Initializes a new instance of the TagPerformance class.

TagPerformance()

Source:
TagPerformance.cs
Source:
TagPerformance.cs

Initializes a new instance of the TagPerformance class.

public TagPerformance ();
Public Sub New ()

Applies to

TagPerformance(Guid, String, Double, Double, Double, Double, Nullable<Double>)

Source:
TagPerformance.cs
Source:
TagPerformance.cs

Initializes a new instance of the TagPerformance class.

public TagPerformance (Guid id = default, string name = default, double precision = 0, double precisionStdDeviation = 0, double recall = 0, double recallStdDeviation = 0, double? averagePrecision = default);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.TagPerformance : Guid * string * double * double * double * double * Nullable<double> -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.TagPerformance
Public Sub New (Optional id As Guid = Nothing, Optional name As String = 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

id
Guid
name
String
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.

averagePrecision
Nullable<Double>

Gets the average precision when applicable.

Applies to