次の方法で共有


Evaluation Constructor

Definition

Initializes a new instance of Evaluation.

public Evaluation (Azure.AI.Projects.InputData data, System.Collections.Generic.IDictionary<string,Azure.AI.Projects.EvaluatorConfiguration> evaluators);
new Azure.AI.Projects.Evaluation : Azure.AI.Projects.InputData * System.Collections.Generic.IDictionary<string, Azure.AI.Projects.EvaluatorConfiguration> -> Azure.AI.Projects.Evaluation
Public Sub New (data As InputData, evaluators As IDictionary(Of String, EvaluatorConfiguration))

Parameters

data
InputData

Data for evaluation. Please note InputData is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include ApplicationInsightsConfiguration and Dataset.

evaluators
IDictionary<String,EvaluatorConfiguration>

Evaluators to be used for the evaluation.

Exceptions

data or evaluators is null.

Applies to