tf.compat.v1.train.start_queue_runners

View source on GitHub

Starts all queue runners collected in the graph. (deprecated)

tf.compat.v1.train.start_queue_runners(
    sess=None, coord=None, daemon=True, start=True,
    collection=tf.GraphKeys.QUEUE_RUNNERS
)

Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: To construct input pipelines, use the tf.data module.

This is a companion method to add_queue_runner(). It just starts threads for all queue runners collected in the graph. It returns the list of all threads.

Args:

Raises:

Returns:

A list of threads.

Raises:

Eager Compatibility

Not compatible with eager execution. To ingest data under eager execution, use the tf.data API instead.