Module Values_1.ModelArtifactsSource

Provides information about the location that is configured for storing model artifacts. Model artifacts are outputs that result from training a model. They typically consist of trained parameters, a model definition that describes how to compute inferences, and other metadata. A SageMaker container stores your trained model artifacts in the /opt/ml/model directory. After training has completed, by default, these artifacts are uploaded to your Amazon S3 bucket as compressed files.

Sourcetype nonrec t = {
  1. s3ModelArtifacts : Values_0.S3Uri.t option;
    (*

    The path of the S3 object that contains the model artifacts. For example, s3://bucket-name/keynameprefix/model.tar.gz.

    *)
}
Sourceval make : ?s3ModelArtifacts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.S3Uri.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