tensorflow::ops::Dilation2DBackpropInput

tensorflow::ops::Dilation2DBackpropInput

#include <nn_ops.h>

Computes the gradient of morphological 2-D dilation with respect to the input.

Summary

Arguments:

  • scope: A Scope object
  • input: 4-D with shape [batch, in_height, in_width, depth].
  • filter: 3-D with shape [filter_height, filter_width, depth].
  • out_backprop: 4-D with shape [batch, out_height, out_width, depth].
  • strides: 1-D of length 4. The stride of the sliding window for each dimension of the input tensor. Must be: [1, stride_height, stride_width, 1].
  • rates: 1-D of length 4. The input stride for atrous morphological dilation. Must be: [1, rate_height, rate_width, 1].
  • padding: The type of padding algorithm to use.

Returns: