Module Values_0.CandidateArtifactLocationsSource

The location of artifacts for an AutoML candidate job.

Sourcetype nonrec t = {
  1. explainability : ExplainabilityLocation.t option;
    (*

    The Amazon S3 prefix to the explainability artifacts generated for the AutoML candidate.

    *)
  2. modelInsights : ModelInsightsLocation.t option;
    (*

    The Amazon S3 prefix to the model insight artifacts generated for the AutoML candidate.

    *)
  3. backtestResults : BacktestResultsLocation.t option;
    (*

    The Amazon S3 prefix to the accuracy metrics and the inference results observed over the testing window. Available only for the time-series forecasting problem type.

    *)
}
Sourceval make : ?explainability:??? -> ?modelInsights:??? -> ?backtestResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ExplainabilityLocation.t ]) 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