Function tensorflow::ops::max_pool_grad_v2
source · pub fn max_pool_grad_v2<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>>(
orig_input: O0,
orig_output: O1,
grad: O2,
ksize: O3,
strides: O4,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for MaxPoolGradV2::new().build(orig_input, orig_output, grad, ksize, strides, scope)
.