Function tensorflow::ops::sparse_add
source · pub fn sparse_add<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>>(
a_indices: O0,
a_values: O1,
a_shape: O2,
b_indices: O3,
b_values: O4,
b_shape: O5,
thresh: O6,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for SparseAdd::new().build(a_indices, a_values, a_shape, b_indices, b_values, b_shape, thresh, scope)
.