Module Values_0.AutoMLCandidateSource

Information about a candidate produced by an AutoML training job, including its status, steps, and other properties.

Sourcetype nonrec t = {
  1. candidateName : CandidateName.t option;
    (*

    The name of the candidate.

    *)
  2. finalAutoMLJobObjectiveMetric : FinalAutoMLJobObjectiveMetric.t option;
  3. objectiveStatus : ObjectiveStatus.t option;
    (*

    The objective's status.

    *)
  4. candidateSteps : CandidateSteps.t option;
    (*

    Information about the candidate's steps.

    *)
  5. candidateStatus : CandidateStatus.t option;
    (*

    The candidate's status.

    *)
  6. inferenceContainers : AutoMLContainerDefinitions.t option;
    (*

    Information about the recommended inference container definitions.

    *)
  7. creationTime : Timestamp.t option;
    (*

    The creation time.

    *)
  8. endTime : Timestamp.t option;
    (*

    The end time.

    *)
  9. lastModifiedTime : Timestamp.t option;
    (*

    The last modified time.

    *)
  10. failureReason : AutoMLFailureReason.t option;
    (*

    The failure reason.

    *)
  11. candidateProperties : CandidateProperties.t option;
    (*

    The properties of an AutoML candidate job.

    *)
  12. inferenceContainerDefinitions : AutoMLInferenceContainerDefinitions.t option;
    (*

    The mapping of all supported processing unit (CPU, GPU, etc...) to inference container definitions for the candidate. This field is populated for the AutoML jobs V2 (for example, for jobs created by calling CreateAutoMLJobV2) related to image or text classification problem types only.

    *)
}
Sourceval make : ?candidateName:??? -> ?finalAutoMLJobObjectiveMetric:??? -> ?objectiveStatus:??? -> ?candidateSteps:??? -> ?candidateStatus:??? -> ?inferenceContainers:??? -> ?creationTime:??? -> ?endTime:??? -> ?lastModifiedTime:??? -> ?failureReason:??? -> ?candidateProperties:??? -> ?inferenceContainerDefinitions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Map of ([> `String of EnvironmentKey.t ] * [> `String of EnvironmentValue.t ]) list | `String of CandidateStepArn.t ]) list ] list | `Map of ([> `Enum of string ] * [> `List of [> `Structure of (string * [> `Map of ([> `String of EnvironmentKey.t ] * [> `String of EnvironmentValue.t ]) list | `String of ContainerImage.t ]) list ] list ]) list | `String of CandidateName.t | `Structure of (string * [> `Enum of string | `Float of MetricValue.t | `List of [> `Structure of (string * [> `Enum of string | `Float of Float_.t ]) list ] list | `Structure of (string * [> `String of ExplainabilityLocation.t ]) list ]) list | `Timestamp of Timestamp.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