pub fn select_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
    ctx: &'a Context,
    condition: &T0,
    t: &T1,
    e: &T2
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for SelectV2::new().call(&ctx, &condition, &t, &e).

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