pub fn quantized_conv2_dwith_bias_sum_and_relu_and_requantize<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>, O8: Into<Output>, O9: Into<Output>, O10: Into<Output>, O11: Into<Output>>(
input: O0,
filter: O1,
bias: O2,
min_input: O3,
max_input: O4,
min_filter: O5,
max_filter: O6,
min_freezed_output: O7,
max_freezed_output: O8,
summand: O9,
min_summand: O10,
max_summand: O11,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for QuantizedConv2DWithBiasSumAndReluAndRequantize::new().build(input, filter, bias, min_input, max_input, min_filter, max_filter, min_freezed_output, max_freezed_output, summand, min_summand, max_summand, scope)
.