Share via


TextAuthoringTrainedModel.GetModelEvaluationResults Method

Definition

Overloads

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

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

GetModelEvaluationResults(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.

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

Source:
TextAuthoringTrainedModel.cs

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

public virtual Azure.Pageable<Azure.AI.Language.Text.Authoring.TextAuthoringDocumentEvalResult> GetModelEvaluationResults(Azure.AI.Language.Text.Authoring.StringIndexType stringIndexType, int? maxCount = default, int? skip = default, int? maxpagesize = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetModelEvaluationResults : Azure.AI.Language.Text.Authoring.StringIndexType * Nullable<int> * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.AI.Language.Text.Authoring.TextAuthoringDocumentEvalResult>
override this.GetModelEvaluationResults : Azure.AI.Language.Text.Authoring.StringIndexType * Nullable<int> * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.AI.Language.Text.Authoring.TextAuthoringDocumentEvalResult>
Public Overridable Function GetModelEvaluationResults (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 Pageable(Of TextAuthoringDocumentEvalResult)

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

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

Source:
TextAuthoringTrainedModel.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.Pageable<BinaryData> GetModelEvaluationResults(string stringIndexType, int? maxCount = default, int? skip = default, int? maxpagesize = default, Azure.RequestContext context = default);
abstract member GetModelEvaluationResults : string * Nullable<int> * Nullable<int> * Nullable<int> * Azure.RequestContext -> Azure.Pageable<BinaryData>
override this.GetModelEvaluationResults : string * Nullable<int> * Nullable<int> * Nullable<int> * Azure.RequestContext -> Azure.Pageable<BinaryData>
Public Overridable Function GetModelEvaluationResults (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 Pageable(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 Pageable<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