pub fn fractional_avg_pool_grad<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
    orig_input_tensor_shape: O0,
    out_backprop: O1,
    row_pooling_sequence: O2,
    col_pooling_sequence: O3,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for FractionalAvgPoolGrad::new().build(orig_input_tensor_shape, out_backprop, row_pooling_sequence, col_pooling_sequence, scope).