pub fn quantize_and_dequantize_v3<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
    input: O0,
    input_min: O1,
    input_max: O2,
    num_bits: O3,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for QuantizeAndDequantizeV3::new().build(input, input_min, input_max, num_bits, scope).