Values_0.TextClassificationJobConfigSourceThe collection of settings used by an AutoML job V2 for the text classification problem type.
type nonrec t = {completionCriteria : AutoMLJobCompletionCriteria.t option;How long a job is allowed to run, or how many candidates a job is allowed to generate.
*)contentColumn : ContentColumn.t;The name of the column used to provide the sentences to be classified. It should not be the same as the target column.
*)targetLabelColumn : TargetLabelColumn.t;The name of the column used to provide the class labels. It should not be same as the content column.
*)}val make :
?completionCriteria:??? ->
contentColumn:ContentColumn.t ->
targetLabelColumn:TargetLabelColumn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of ContentColumn.t
| `Structure of (string * [> `Integer of MaxCandidates.t ]) list ])
list ]