HomeSort by relevance Sort by last modified time
    Searched refs:filename_queue (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/contrib/model_pruning/examples/cifar10/
cifar10_input.py 37 def read_cifar10(filename_queue):
46 filename_queue: A queue of strings with the filenames to read from.
76 # Read a record, getting filenames from the filename_queue. No
80 result.key, value = reader.read(filename_queue)
159 filename_queue = tf.train.string_input_producer(filenames)
162 read_input = read_cifar10(filename_queue)
232 filename_queue = tf.train.string_input_producer(filenames)
235 read_input = read_cifar10(filename_queue)
  /external/tensorflow/tensorflow/contrib/slim/python/slim/data/
parallel_reader.py 240 filename_queue = tf_input.string_input_producer(
262 reader_kwargs=reader_kwargs).read(filename_queue)
281 filename_queue = tf_input.string_input_producer(
284 return reader_class(**reader_kwargs).read(filename_queue)
parallel_reader_test.py 51 filename_queue = input_lib.string_input_producer(data_files)
52 key, value = p_reader.read(filename_queue)
91 filename_queue = input_lib.string_input_producer(data_files, num_epochs=1)
92 key, value = p_reader.read_up_to(filename_queue, 4)
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
input_pipeline.py 330 A tuple of (filename_queue, epoch_limiter):
331 filename_queue: A FIFOQueue with filename work items.
333 be set to zero before a reader is passed `filename_queue` in order to
356 filename_queue = input_lib.string_input_producer(
358 return filename_queue, epoch_limiter
368 filename_queue, epoch_limiter = self._get_filename_queue(
374 filename_queue, self._read_num_records_hint)
385 filename_queue, epoch_limiter = self._get_filename_queue(epoch_limit=2)
388 first_key, first_value = reader.read_up_to(filename_queue, 1)
399 new_key, new_value = reader.read_up_to(filename_queue, 1
    [all...]
  /external/tensorflow/tensorflow/tools/gcs_test/python/
gcs_smoke.py 232 filename_queue = tf.train.string_input_producer([input_path], num_epochs=1)
234 _, serialized_example = reader.read(filename_queue)
  /external/tensorflow/tensorflow/python/training/
supervisor_test.py 273 filename_queue = input_lib.string_input_producer(
276 _, csv = reader.read(filename_queue)
292 filename_queue = input_lib.string_input_producer(
295 _, csv = reader.read(filename_queue)
312 filename_queue = input_lib.string_input_producer(
315 _, csv = reader.read(filename_queue)
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
reader_ops_test.py     [all...]

Completed in 191 milliseconds