Module Values.MembershipMLPaymentConfigSource

An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.

Sourcetype nonrec t = {
  1. modelTraining : MembershipModelTrainingPaymentConfig.t option;
    (*

    The payment responsibilities accepted by the member for model training.

    *)
  2. modelInference : MembershipModelInferencePaymentConfig.t option;
    (*

    The payment responsibilities accepted by the member for model inference.

    *)
  3. syntheticDataGeneration : MembershipSyntheticDataGenerationPaymentConfig.t option;
    (*

    The payment configuration for synthetic data generation for this machine learning membership.

    *)
}
Sourceval make : ?modelTraining:??? -> ?modelInference:??? -> ?syntheticDataGeneration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t ]) list ]) 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