tf.compat.v1.train.maybe_batch_join

View source on GitHub

Runs a list of tensors to conditionally fill a queue to create batches. (deprecated)

tf.compat.v1.train.maybe_batch_join(
    tensors_list, keep_input, batch_size, capacity=32, enqueue_many=False,
    shapes=None, dynamic_pad=False, allow_smaller_final_batch=False,
    shared_name=None, name=None
)

Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Queue-based input pipelines have been replaced by tf.data. Use tf.data.Dataset.interleave(...).filter(...).batch(batch_size) (or padded_batch(...) if dynamic_pad=True).

See docstring in batch_join for more details.

Args:

Returns:

A list or dictionary of tensors with the same number and types as tensors_list[i].

Raises: