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

Method _clone

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

Source from the content-addressed store, hash-verified

313 super(TFRecordDatasetV2, self).__init__(variant_tensor)
314
315 def _clone(self,
316 filenames=None,
317 compression_type=None,
318 buffer_size=None,
319 num_parallel_reads=None):
320 return TFRecordDatasetV2(filenames or self._filenames,
321 compression_type or self._compression_type,
322 buffer_size or self._buffer_size,
323 num_parallel_reads or self._num_parallel_reads)
324
325 def _inputs(self):
326 return self._impl._inputs() # pylint: disable=protected-access

Callers

nothing calls this directly

Calls 1

TFRecordDatasetV2Class · 0.85

Tested by

no test coverage detected