Share via


ConversationAuthoringTrainedModel.GetModelEvaluationResultsAsync Method

Definition

Overloads

GetModelEvaluationResultsAsync(StringIndexType, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, CancellationToken)

Gets the detailed results of the evaluation for a trained model.

GetModelEvaluationResultsAsync(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, RequestContext)

[Protocol Method] Gets the detailed results of the evaluation for a trained model. This includes the raw inference results for the data included in the evaluation process.

GetModelEvaluationResultsAsync(StringIndexType, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, CancellationToken)

Source:
ConversationAuthoringTrainedModel.cs

Gets the detailed results of the evaluation for a trained model.

public virtual Azure.AsyncPageable<Azure.AI.Language.Conversations.Authoring.UtteranceEvaluationResult> GetModelEvaluationResultsAsync(Azure.AI.Language.Conversations.Authoring.StringIndexType stringIndexType, int? maxCount = default, int? skip = default, int? maxpagesize = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetModelEvaluationResultsAsync : Azure.AI.Language.Conversations.Authoring.StringIndexType * Nullable<int> * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.AI.Language.Conversations.Authoring.UtteranceEvaluationResult>
override this.GetModelEvaluationResultsAsync : Azure.AI.Language.Conversations.Authoring.StringIndexType * Nullable<int> * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.AI.Language.Conversations.Authoring.UtteranceEvaluationResult>
Public Overridable Function GetModelEvaluationResultsAsync (stringIndexType As StringIndexType, Optional maxCount As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional maxpagesize As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of UtteranceEvaluationResult)

Parameters

stringIndexType
StringIndexType

Specifies the method used to interpret string offsets.

maxCount
Nullable<Int32>

The number of result items to return.

skip
Nullable<Int32>

The number of result items to skip.

maxpagesize
Nullable<Int32>

The maximum number of result items per page.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Applies to

GetModelEvaluationResultsAsync(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, RequestContext)

Source:
ConversationAuthoringTrainedModel.cs

[Protocol Method] Gets the detailed results of the evaluation for a trained model. This includes the raw inference results for the data included in the evaluation process.

public virtual Azure.AsyncPageable<BinaryData> GetModelEvaluationResultsAsync(string stringIndexType, int? maxCount = default, int? skip = default, int? maxpagesize = default, Azure.RequestContext context = default);
abstract member GetModelEvaluationResultsAsync : string * Nullable<int> * Nullable<int> * Nullable<int> * Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
override this.GetModelEvaluationResultsAsync : string * Nullable<int> * Nullable<int> * Nullable<int> * Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
Public Overridable Function GetModelEvaluationResultsAsync (stringIndexType As String, Optional maxCount As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional maxpagesize As Nullable(Of Integer) = Nothing, Optional context As RequestContext = Nothing) As AsyncPageable(Of BinaryData)

Parameters

stringIndexType
String

Specifies the method used to interpret string offsets. For additional information see https://aka.ms/text-analytics-offsets. Allowed values: "Utf16CodeUnit" | "Utf8CodeUnit" | "Utf32CodeUnit".

maxCount
Nullable<Int32>

The number of result items to return.

skip
Nullable<Int32>

The number of result items to skip.

maxpagesize
Nullable<Int32>

The maximum number of result items per page.

context
RequestContext

The request context, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The AsyncPageable<T> from the service containing a list of BinaryData objects. Details of the body schema for each item in the collection are in the Remarks section below.

Exceptions

Service returned a non-success status code.

Applies to