Module Values.CustomModelTransformParametersSource

Contains custom model transform parameters. See Use a trained model to generate new model artifacts.

Sourcetype nonrec t = {
  1. sourceS3DirectoryPath : String_.t;
    (*

    The path to the Amazon S3 location where the Python module implementing your model is located. This must point to a valid existing Amazon S3 location that contains, at a minimum, a training script, a transform script, and a model-hpo-configuration.json file.

    *)
  2. transformEntryPointScript : String_.t option;
    (*

    The name of the entry point in your module of a script that should be run after the best model from the hyperparameter search has been identified, to compute the model artifacts necessary for model deployment. It should be able to run with no command-line arguments. The default is transform.py.

    *)
}
Sourceval context_ : string
Sourceval make : ?transformEntryPointScript:??? -> sourceS3DirectoryPath:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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