pub fn ragged_cross<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>>(
    ctx: &'a Context,
    ragged_values: &T0,
    ragged_row_splits: &T1,
    sparse_indices: &[&T2],
    sparse_values: &T3,
    sparse_shape: &[&T4],
    dense_inputs: &T5
) -> Result<[TensorHandle<'a>; 2]>
Expand description

Shorthand for RaggedCross::new().call(&ctx, &ragged_values, &ragged_row_splits, &sparse_indices, &sparse_values, &sparse_shape, &dense_inputs).

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