Function tensorflow::ops::quantized_bias_add
source · pub fn quantized_bias_add<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>>(
input: O0,
bias: O1,
min_input: O2,
max_input: O3,
min_bias: O4,
max_bias: O5,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for QuantizedBiasAdd::new().build(input, bias, min_input, max_input, min_bias, max_bias, scope)
.