Module Values.IncrementalTrainingDataChannelSource

Defines an incremental training data channel that references a previously trained model. Incremental training allows you to update an existing trained model with new data, building upon the knowledge from a base model rather than training from scratch. This can significantly reduce training time and computational costs while improving model performance with additional data.

Sourcetype nonrec t = {
  1. trainedModelArn : TrainedModelArn.t;
    (*

    The Amazon Resource Name (ARN) of the base trained model to use for incremental training. This model serves as the starting point for the incremental training process.

    *)
  2. versionIdentifier : UUID.t option;
    (*

    The version identifier of the base trained model to use for incremental training. If not specified, the latest version of the trained model is used.

    *)
  3. channelName : ModelTrainingDataChannelName.t;
    (*

    The name of the incremental training data channel. This name is used to identify the channel during the training process and must be unique within the training job.

    *)
}
Sourceval context_ : string
Sourceval make : ?versionIdentifier:??? -> trainedModelArn:TrainedModelArn.t -> channelName:ModelTrainingDataChannelName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TrainedModelArn.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