Module Values.DatasetEntityRecognizerInputDataConfigSource

Specifies the format and location of the input data. You must provide either the Annotations parameter or the EntityList parameter.

Sourcetype nonrec t = {
  1. annotations : DatasetEntityRecognizerAnnotations.t option;
    (*

    The S3 location of the annotation documents for your custom entity recognizer.

    *)
  2. documents : DatasetEntityRecognizerDocuments.t;
    (*

    The format and location of the training documents for your custom entity recognizer.

    *)
  3. entityList : DatasetEntityRecognizerEntityList.t option;
    (*

    The S3 location of the entity list for your custom entity recognizer.

    *)
}
Sourceval context_ : string
Sourceval make : ?annotations:??? -> ?entityList:??? -> documents:DatasetEntityRecognizerDocuments.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of S3Uri.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