(self, filenames, compression_type=None, buffer_size=None,
num_parallel_reads=None)
| 335 | """A `Dataset` comprising records from one or more TFRecord files.""" |
| 336 | |
| 337 | def __init__(self, filenames, compression_type=None, buffer_size=None, |
| 338 | num_parallel_reads=None): |
| 339 | wrapped = TFRecordDatasetV2( |
| 340 | filenames, compression_type, buffer_size, num_parallel_reads) |
| 341 | super(TFRecordDatasetV1, self).__init__(wrapped) |
| 342 | __init__.__doc__ = TFRecordDatasetV2.__init__.__doc__ |
| 343 | |
| 344 | def _clone(self, |
nothing calls this directly
no test coverage detected