Module Values.IncrementalTrainingDataChannelOutputSource

Contains information about an incremental training data channel that was used to create a trained model. This structure provides details about the base model and channel configuration used during incremental training.

Sourcetype nonrec t = {
  1. channelName : ModelTrainingDataChannelName.t option;
    (*

    The name of the incremental training data channel that was used.

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

    The version identifier of the trained model that was used for incremental training.

    *)
  3. modelName : NameString.t option;
    (*

    The name of the base trained model that was used for incremental training.

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