Function tensorflow::ops::requantize_per_channel
source · pub fn requantize_per_channel<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>>(
input: O0,
input_min: O1,
input_max: O2,
requested_output_min: O3,
requested_output_max: O4,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for RequantizePerChannel::new().build(input, input_min, input_max, requested_output_min, requested_output_max, scope)
.