pub fn quantized_conv2_d<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>>(
    input: O0,
    filter: O1,
    min_input: O2,
    max_input: O3,
    min_filter: O4,
    max_filter: O5,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for QuantizedConv2D::new().build(input, filter, min_input, max_input, min_filter, max_filter, scope).