Function tensorflow::eager::raw_ops::quantized_relu6
source · pub fn quantized_relu6<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
ctx: &'a Context,
features: &T0,
min_features: &T1,
max_features: &T2
) -> Result<[TensorHandle<'a>; 3]>
Expand description
Shorthand for QuantizedRelu6::new().call(&ctx, &features, &min_features, &max_features)
.
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/QuantizedRelu6