Module Values.TestingDataResultSource

Sagemaker Groundtruth format manifest files for the input, output and validation datasets that are used and created during testing.

Sourcetype nonrec t = {
  1. input : TestingData.t option;
    (*

    The testing dataset that was supplied for training.

    *)
  2. output : TestingData.t option;
    (*

    The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.

    *)
  3. validation : ValidationData.t option;
    (*

    The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.

    *)
}
Sourceval make : ?input:??? -> ?output:??? -> ?validation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `String of S3Bucket.t ]) list ]) list ]) list ] list ]) 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