tf.group(*inputs, **kwargs)
See the guide: Control Flow > Control Flow Operations
Create an op that groups multiple operations.
When this op finishes, all ops in input
have finished. This op has no output.
See also tuple
and with_dependencies
.
inputs: Zero or more tensors to group. kwargs: Optional parameters to pass when constructing the NodeDef. name
: A name for this operation (optional).
An Operation that executes all its inputs.
ValueError
: If an unknown keyword argument is provided.Defined in tensorflow/python/ops/control_flow_ops.py
.
© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/group