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

  /external/tensorflow/tensorflow/python/training/
queue_runner_test.py 48 count_up_to = var.count_up_to(3)
51 qr = queue_runner_impl.QueueRunner(queue, [count_up_to])
68 count_up_to_3 = var0.count_up_to(3)
70 count_up_to_30 = var1.count_up_to(30)
135 count_up_to = var.count_up_to(3)
138 qr = queue_runner_impl.QueueRunner(queue, [count_up_to])
188 count_up_to = var.count_up_to(3
    [all...]
input_test.py 448 counter = examples.count_up_to(num_batches * batch_size)
506 counter = examples.count_up_to(num_batches * batch_size)
536 counter = examples.count_up_to(num_batches * batch_size)
572 counter = examples.count_up_to(num_batches * batch_size)
612 counter = examples.count_up_to(num_batches * batch_size + extra_elements)
670 counter = examples.count_up_to(num_batches * batch_size + extra_elements)
723 counter = examples.count_up_to(num_batches * batch_size)
782 counter = examples.count_up_to(num_batches * batch_size * 2)
    [all...]
input.py 105 counter = epochs.count_up_to(num_epochs)
    [all...]
saver_test.py     [all...]
  /external/tensorflow/tensorflow/contrib/slim/python/slim/data/
prefetch_queue_test.py 48 counter = examples.count_up_to(num_batches * batch_size)
85 counter = examples.count_up_to(num_batches * batch_size)
125 counter = examples.count_up_to(num_batches * batch_size)
179 counter = examples.count_up_to(batch_size)
  /external/tensorflow/tensorflow/contrib/input_pipeline/python/ops/
input_pipeline_ops.py 107 c = filename_counter.count_up_to(len(expanded_list))
  /external/tensorflow/tensorflow/python/ops/
state_ops.py 284 @tf_export("count_up_to")
285 def count_up_to(ref, limit, name=None): function
302 return gen_state_ops.count_up_to(ref, limit=limit, name=name)
standard_ops.py 77 from tensorflow.python.ops.state_ops import count_up_to
variables.py 685 def count_up_to(self, limit): member in class:Variable
695 This is essentially a shortcut for `count_up_to(self, limit)`.
705 return state_ops.count_up_to(self._variable, limit=limit)
    [all...]
resource_variable_ops.py 635 def count_up_to(self, limit): member in class:ResourceVariable
645 This is essentially a shortcut for `count_up_to(self, limit)`.
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
variables_test.py 160 count_up_to = var.count_up_to(3)
165 self.assertEqual(0, count_up_to.eval())
168 self.assertEqual(1, count_up_to.eval())
171 self.assertEqual(2, count_up_to.eval())
175 count_up_to.eval()
179 count_up_to.eval()
resource_variable_ops_test.py 237 self.assertAllEqual(v.count_up_to(1), 0)
239 v.count_up_to(1)
244 self.assertAllEqual(state_ops.count_up_to(v, 1), 0)
246 state_ops.count_up_to(v, 1)
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
input_pipeline.py 352 lambda: epoch_limiter.count_up_to(epoch_limit),
    [all...]
head_test.py 90 .count_up_to(10),

Completed in 168 milliseconds