CustomVisionTrainingClientExtensions.GetImagePerformanceCount Method
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.
Gets the number of images tagged with the provided {tagIds} that have prediction results from training for the provided iteration {iterationId}.
public static int? GetImagePerformanceCount (this Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.ICustomVisionTrainingClient operations, Guid projectId, Guid iterationId, System.Collections.Generic.IList<Guid> tagIds = default);
static member GetImagePerformanceCount : Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.ICustomVisionTrainingClient * Guid * Guid * System.Collections.Generic.IList<Guid> -> Nullable<int>
<Extension()>
Public Function GetImagePerformanceCount (operations As ICustomVisionTrainingClient, projectId As Guid, iterationId As Guid, Optional tagIds As IList(Of Guid) = Nothing) As Nullable(Of Integer)
Parameters
- operations
- ICustomVisionTrainingClient
The operations group for this extension method.
- projectId
- Guid
The project id.
- iterationId
- Guid
The iteration id. Defaults to workspace.
A list of tags ids to filter the images to count. Defaults to all tags when null.
Returns
Remarks
The filtering is on an and/or relationship. For example, if the provided tag ids are for the "Dog" and "Cat" tags, then only images tagged with Dog and/or Cat will be returned