View source on GitHub
|
Produces the integers from 0 to limit-1 in a queue. (deprecated)
tf.compat.v1.train.range_input_producer(
limit,
num_epochs=None,
shuffle=True,
seed=None,
capacity=32,
shared_name=None,
name=None
)
Args |
|---|
limit
num_epochs
range_input_producer
produces each integer num_epochs times before generating an
OutOfRange error. If not specified, range_input_producer can cycle
through the integers an unlimited number of times.
shuffle
seed
capacity
shared_name
name
Returns | |
|---|---|
A Queue with the output integers. A QueueRunner for the Queue
is added to the current Graph's QUEUE_RUNNER collection.
|
eager compatibility
Input pipelines based on Queues are not supported when eager execution is
enabled. Please use the tf.data API to ingest data under eager execution.
View source on GitHub