pub fn edit_distance<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>>(
    ctx: &'a Context,
    hypothesis_indices: &T0,
    hypothesis_values: &T1,
    hypothesis_shape: &T2,
    truth_indices: &T3,
    truth_values: &T4,
    truth_shape: &T5
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for EditDistance::new().call(&ctx, &hypothesis_indices, &hypothesis_values, &hypothesis_shape, &truth_indices, &truth_values, &truth_shape).

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