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

  /external/tensorflow/tensorflow/python/data/ops/
iterator_ops.py 179 def from_string_handle(string_handle,
187 In that case, `string_handle` would a @{tf.placeholder}, and you would feed
188 it with the value of @{tf.data.Iterator.string_handle} in each step.
196 train_iterator_handle = sess.run(train_iterator.string_handle())
199 test_iterator_handle = sess.run(test_iterator.string_handle())
213 string_handle: A scalar `tf.Tensor` of type `tf.string` that evaluates
214 to a handle produced by the `Iterator.string_handle()` method.
237 string_handle = ops.convert_to_tensor(string_handle, dtype=dtypes.string)
239 string_handle,
369 def string_handle(self, name=None): member in class:Iterator
    [all...]
  /external/tensorflow/tensorflow/python/data/kernel_tests/
iterator_ops_test.py 370 iterator_3_handle = sess.run(iterator_3.string_handle())
371 iterator_4_handle = sess.run(iterator_4.string_handle())
410 self.assertIs(one_shot_iterator.string_handle(),
411 one_shot_iterator.string_handle())
412 self.assertIs(initializable_iterator.string_handle(),
413 initializable_iterator.string_handle())
414 self.assertIs(structure_iterator.string_handle(),
415 structure_iterator.string_handle())
421 handle_with_name = one_shot_iterator.string_handle(name="foo")
423 self.assertIsNot(one_shot_iterator.string_handle(), handle_with_name
    [all...]
iterator_ops_cluster_test.py 51 iterator_3_handle = iterator_3.string_handle()
66 iterator_3_handle = iterator_3.string_handle()
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
prefetching_ops_test.py 54 iterator_3_handle = iterator_3.string_handle()
  /external/tensorflow/tensorflow/core/common_runtime/
direct_session_test.cc 679 Tensor string_handle(DT_STRING, {});
680 string_handle.flat<string>().setConstant(resource_handle.name());
684 s = session->Run({{const2->name(), string_handle}}, {node6->name() + ":0"},
692 s = session->Run({{const2->name(), string_handle}}, {}, {node7->name()},
    [all...]
  /external/tensorflow/tensorflow/python/grappler/
datasets_test.py 433 handle = iterator.string_handle()

Completed in 100 milliseconds