pub fn stateless_random_gamma_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
    ctx: &'a Context,
    shape: &T0,
    seed: &T1,
    alpha: &T2
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for StatelessRandomGammaV2::new().call(&ctx, &shape, &seed, &alpha).

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