Module Values_0.AutoMLDataSplitConfigSource

This structure specifies how to split the data into train and validation datasets. The validation and training datasets must contain the same headers. For jobs created by calling CreateAutoMLJob, the validation dataset must be less than 2 GB in size.

Sourcetype nonrec t = {
  1. validationFraction : ValidationFraction.t option;
    (*

    The validation fraction (optional) is a float that specifies the portion of the training dataset to be used for validation. The default value is 0.2, and values must be greater than 0 and less than 1. We recommend setting this value to be less than 0.5.

    *)
}
Sourceval make : ?validationFraction:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of ValidationFraction.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