dataFormat property

String? dataFormat
getter/setter pair

The format of the input data files.

Required. Possible string values are:

  • "DATA_FORMAT_UNSPECIFIED" : Unspecified format.
  • "JSON" : Each line of the file is a JSON dictionary representing one record.
  • "TEXT" : Deprecated. Use JSON instead.
  • "TF_RECORD" : The source file is a TFRecord file. Currently available only for input data.
  • "TF_RECORD_GZIP" : The source file is a GZIP-compressed TFRecord file. Currently available only for input data.
  • "CSV" : Values are comma-separated rows, with keys in a separate file. Currently available only for output data.

Implementation

core.String? dataFormat;