pub fn sparse_to_dense<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>>(
    ctx: &'a Context,
    sparse_indices: &T0,
    output_shape: &T1,
    sparse_values: &T2,
    default_value: &T3
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for SparseToDense::new().call(&ctx, &sparse_indices, &output_shape, &sparse_values, &default_value).

See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/SparseToDense