Module Values.AlgorithmSource

Describes a custom algorithm.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the algorithm.

    *)
  2. algorithmArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the algorithm.

    *)
  3. algorithmImage : AlgorithmImage.t option;
    (*

    The URI of the Docker container for the algorithm image.

    *)
  4. defaultHyperParameters : HyperParameters.t option;
    (*

    Specifies the default hyperparameters.

    *)
  5. defaultHyperParameterRanges : DefaultHyperParameterRanges.t option;
    (*

    Specifies the default hyperparameters, their ranges, and whether they are tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).

    *)
  6. defaultResourceConfig : ResourceConfig.t option;
    (*

    Specifies the default maximum number of training jobs and parallel training jobs.

    *)
  7. trainingInputMode : TrainingInputMode.t option;
    (*

    The training input mode.

    *)
  8. roleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the role.

    *)
  9. creationDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the algorithm was created.

    *)
  10. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the algorithm was last updated.

    *)
}
Sourceval make : ?name:??? -> ?algorithmArn:??? -> ?algorithmImage:??? -> ?defaultHyperParameters:??? -> ?defaultHyperParameterRanges:??? -> ?defaultResourceConfig:??? -> ?trainingInputMode:??? -> ?roleArn:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Name.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Tunable.t | `Double of ContinuousMinValue.t | `Integer of IntegerMinValue.t | `List of [> `String of CategoricalValue.t ] list | `String of ParameterName.t ]) list ] list | `String of Name.t ]) list | `Timestamp of Date.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