pub fn sdca_optimizer_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>, T6: ToTensorHandle<'a>, T7: ToTensorHandle<'a>, T8: ToTensorHandle<'a>, T9: ToTensorHandle<'a>>(
    ctx: &'a Context,
    sparse_example_indices: &[&T0],
    sparse_feature_indices: &[&T1],
    sparse_feature_values: &[&T2],
    dense_features: &[&T3],
    example_weights: &T4,
    example_labels: &T5,
    sparse_indices: &[&T6],
    sparse_weights: &[&T7],
    dense_weights: &[&T8],
    example_state_data: &T9
) -> Result<[TensorHandle<'a>; 3]>
Expand description

Shorthand for SdcaOptimizerV2::new().call(&ctx, &sparse_example_indices, &sparse_feature_indices, &sparse_feature_values, &dense_features, &example_weights, &example_labels, &sparse_indices, &sparse_weights, &dense_weights, &example_state_data).

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