ngraph.reduce_sum

ngraph.reduce_sum(node: Union[_pyngraph.Node, int, float, numpy.ndarray], reduction_axes: Union[_pyngraph.Node, int, float, numpy.ndarray], keep_dims: bool = False, name: Optional[str] = None)_pyngraph.Node

Perform element-wise sums of the input tensor, eliminating the specified reduction axes.

Parameters
  • node – The node providing data for operation.

  • reduction_axes – The axes to eliminate through summation.

  • keep_dims – If set to True it holds axes that are used for reduction

  • name – The optional new name for output node.

Returns

The new node performing summation along reduction_axes element-wise.