W3cubDocs

/TensorFlow C++

tensorflow::ops::Conv3DBackpropFilterV2

#include <nn_ops.h>

Computes the gradients of 3-D convolution with respect to the filter.

Summary

Arguments:

  • scope: A Scope object
  • input: Shape[batch, depth, rows, cols, in_channels].
  • filter_sizes: An integer vector representing the tensor shape of filter, where filter is a 5-D [filter_depth, filter_height, filter_width, in_channels, out_channels] tensor.
  • out_backprop: Backprop signal of shape [batch, out_depth, out_rows, out_cols, out_channels].
  • strides: 1-D tensor of length 5. The stride of the sliding window for each dimension of input. Must have strides[0] = strides[4] = 1.
  • padding: The type of padding algorithm to use.

Returns:

Constructors and Destructors
Conv3DBackpropFilterV2(const ::tensorflow::Scope & scope, ::tensorflow::Input input, ::tensorflow::Input filter_sizes, ::tensorflow::Input out_backprop, const gtl::ArraySlice< int > & strides, StringPiece padding)
Public attributes
output
Public functions
node() const
::tensorflow::Node *
operator::tensorflow::Input() const
operator::tensorflow::Output() const

Public attributes

output

::tensorflow::Output output

Public functions

Conv3DBackpropFilterV2

 Conv3DBackpropFilterV2(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input input,
  ::tensorflow::Input filter_sizes,
  ::tensorflow::Input out_backprop,
  const gtl::ArraySlice< int > & strides,
  StringPiece padding
)

node

::tensorflow::Node * node() const 

operator::tensorflow::Input

operator::tensorflow::Input() const 

operator::tensorflow::Output

operator::tensorflow::Output() const 

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/conv3-d-backprop-filter-v2.html