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

Method __init__

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

Source from the content-addressed store, hash-verified

172 """A `Dataset` comprising lines from one or more text files."""
173
174 def __init__(self, filenames, compression_type=None, buffer_size=None,
175 num_parallel_reads=None):
176 wrapped = TextLineDatasetV2(filenames, compression_type, buffer_size,
177 num_parallel_reads)
178 super(TextLineDatasetV1, self).__init__(wrapped)
179 __init__.__doc__ = TextLineDatasetV2.__init__.__doc__
180
181 @property

Callers

nothing calls this directly

Calls 2

TextLineDatasetV2Class · 0.85
__init__Method · 0.45

Tested by

no test coverage detected