Function tensorflow::ops::sparse_dense_cwise_add
source · pub fn sparse_dense_cwise_add<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
sp_indices: O0,
sp_values: O1,
sp_shape: O2,
dense: O3,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for SparseDenseCwiseAdd::new().build(sp_indices, sp_values, sp_shape, dense, scope)
.