Module Values.IntentClassificationTestResultItemCountsSource

The number of items in the intent classification test.

Sourcetype nonrec t = {
  1. totalResultCount : Count.t option;
    (*

    The total number of results in the intent classification test.

    *)
  2. speechTranscriptionResultCounts : TestResultMatchStatusCountMap.t option;
    (*

    The number of matched, mismatched, and execution error results for speech transcription for the intent.

    *)
  3. intentMatchResultCounts : TestResultMatchStatusCountMap.t option;
    (*

    The number of matched and mismatched results for intent recognition for the intent.

    *)
}
Sourceval make : ?totalResultCount:??? -> ?speechTranscriptionResultCounts:??? -> ?intentMatchResultCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Count.t | `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t