Module Values.MLSyntheticDataParametersSource

Parameters that control the generation of synthetic data for machine learning, including privacy settings and column classification details.

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

    The epsilon value for differential privacy when generating synthetic data. Lower values provide stronger privacy guarantees but may reduce data utility.

    *)
  2. maxMembershipInferenceAttackScore : MaxMembershipInferenceAttackScore.t;
    (*

    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;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : epsilon:MLSyntheticDataParametersEpsilonDouble.t -> maxMembershipInferenceAttackScore:MaxMembershipInferenceAttackScore.t -> columnClassification:ColumnClassificationDetails.t -> 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