ConversationAuthoringTrainedModel.GetModelEvaluationResultsAsync 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.
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)
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.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
Applies to
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.
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
- Please try the simpler GetModelEvaluationResultsAsync(StringIndexType, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, CancellationToken) convenience overload with strongly typed models first.
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".
- 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.