tensorflow API: tf.unsorted_segment_sum

来源:互联网 发布:工程造价软件破解版 编辑:程序博客网 时间:2024/06/11 10:06
tf.groupgroup(    *inputs,    **kwargs)

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 control_dependencies.
创建一个操作,该操作可以对 TensorFlow 的多个操作进行分组。 当这个操作完成后,所有 input 中的所有 ops 都已完成。这个操作没有输出

Args:
*inputs: Zero or more tensors to group.
**kwargs: Optional parameters to pass when constructing the NodeDef.
name: A name for this operation (optional).
Returns:
An Operation that executes all its inputs.

参数:
input:需要进行分组的零个或多个张量。

kwargs:构造 NodeDef 时要传递的可选参数

返回值:

该函数返回执行其所有输入的操作。

原创粉丝点击