Function tensorflow::ops::sparse_reduce_sum
source · pub fn sparse_reduce_sum<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
input_indices: O0,
input_values: O1,
input_shape: O2,
reduction_axes: O3,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for SparseReduceSum::new().build(input_indices, input_values, input_shape, reduction_axes, scope)
.