tf.QueueBase.from_list(index, queues)
Create a queue using the queue reference from queues[index]
.
Args:
-
index
: An integer scalar tensor that determines the input that gets selected. -
queues
: A list ofQueueBase
objects.
Returns:
A QueueBase
object.
Raises:
-
TypeError
: Whenqueues
is not a list ofQueueBase
objects, or when the data types ofqueues
are not all the same.
Please login to continue.