Values.HumanEvaluationCustomMetricSourceIn a model evaluation job that uses human workers you must define the name of the metric, and how you want that metric rated ratingMethod, and an optional description of the metric.
type nonrec t = {name : EvaluationMetricName.t;The name of the metric. Your human evaluators will see this name in the evaluation UI.
*)description : EvaluationMetricDescription.t option;An optional description of the metric. Use this parameter to provide more details about the metric.
*)ratingMethod : EvaluationRatingMethod.t;Choose how you want your human workers to evaluation your model. Valid values for rating methods are ThumbsUpDown, IndividualLikertScale,ComparisonLikertScale, ComparisonChoice, and ComparisonRank
*)}val make :
?description:??? ->
name:EvaluationMetricName.t ->
ratingMethod:EvaluationRatingMethod.t ->
unit ->
t