Module Values.MLSyntheticDataParametersSource

Parameters that control the generation of synthetic data for custom model training, including privacy settings and column classification details.

Sourcetype nonrec t = {
  1. epsilon : MLSyntheticDataParametersEpsilonDouble.t option;
    (*

    The epsilon value for differential privacy, which controls the privacy-utility tradeoff in synthetic data generation. Lower values provide stronger privacy guarantees but may reduce data utility.

    *)
  2. maxMembershipInferenceAttackScore : MLSyntheticDataParametersMaxMembershipInferenceAttackScoreDouble.t option;
    (*

    The maximum acceptable score for membership inference attack vulnerability. Synthetic data generation fails if the score for the resulting data exceeds this threshold.

    *)
  3. columnClassification : ColumnClassificationDetails.t option;
    (*

    Classification details for data columns that specify how each column should be treated during synthetic data generation.

    *)
}
Sourceval make : ?epsilon:??? -> ?maxMembershipInferenceAttackScore:??? -> ?columnClassification:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of MLSyntheticDataParametersEpsilonDouble.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of SyntheticDataColumnName.t ]) list ] list ]) 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