CustomVisionTrainingClientExtensions.GetImagePerformancesAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
特定のプロジェクトイテレーションの予測を含む画像を取得します。
public static System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImagePerformance>> GetImagePerformancesAsync (this Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.ICustomVisionTrainingClient operations, Guid projectId, Guid iterationId, System.Collections.Generic.IList<Guid> tagIds = default, string orderBy = default, int? take = 50, int? skip = 0, System.Threading.CancellationToken cancellationToken = default);
static member GetImagePerformancesAsync : Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.ICustomVisionTrainingClient * Guid * Guid * System.Collections.Generic.IList<Guid> * string * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImagePerformance>>
<Extension()>
Public Function GetImagePerformancesAsync (operations As ICustomVisionTrainingClient, projectId As Guid, iterationId As Guid, Optional tagIds As IList(Of Guid) = Nothing, Optional orderBy As String = Nothing, Optional take As Nullable(Of Integer) = 50, Optional skip As Nullable(Of Integer) = 0, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IList(Of ImagePerformance))
パラメーター
- operations
- ICustomVisionTrainingClient
この拡張メソッドの操作グループ。
- projectId
- Guid
プロジェクト ID。
- iterationId
- Guid
イテレーション ID。既定値はワークスペースです。
- orderBy
- String
順序付け。 既定値は最新です。 使用可能な値は次のとおりです: 'Newest'、'Oldest'
- cancellationToken
- CancellationToken
キャンセル トークン。
戻り値
注釈
この API は、バッチ処理と範囲選択をサポートしています。 既定では、画像に一致する最初の 50 の画像のみが返されます。 {take} パラメーターと {skip} パラメーターを使用して、特定のバッチで返すイメージの数を制御します。 フィルター処理は、and/or の関係性に基づいています。 たとえば、指定されたタグ ID が "Dog" タグと "Cat" タグの場合、Dog や Cat でタグ付けされた画像のみが返されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET