MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / __init__

Method __init__

tensorflow/python/data/ops/readers.py:337–341  ·  view source on GitHub ↗
(self, filenames, compression_type=None, buffer_size=None,
               num_parallel_reads=None)

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 2

TFRecordDatasetV2Class · 0.85
__init__Method · 0.45

Tested by

no test coverage detected