Function tensorflow::ops::sparse_to_dense
source · pub fn sparse_to_dense<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
sparse_indices: O0,
output_shape: O1,
sparse_values: O2,
default_value: O3,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for SparseToDense::new().build(sparse_indices, output_shape, sparse_values, default_value, scope)
.