outputDataFormat property

String? outputDataFormat
getter/setter pair

Format of the output data files, defaults to JSON.

Optional. 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? outputDataFormat;