tensorflow::ops::Concat
#include <array_ops.h>
Concatenates tensors along one dimension.
Summary
Arguments:
- scope: A Scope object
- values: List of
NTensors to concatenate. Their ranks and types must match, and their sizes must match in all dimensions exceptconcat_dim. - axis: 0-D. The dimension along which to concatenate. Must be in the range [-rank(values), rank(values)).
Returns:
-
Output: ATensorwith the concatenation of values stacked along theconcat_dimdimension. This tensor's shape matches that ofvaluesexcept inconcat_dimwhere it has the sum of the sizes.
| Constructors and Destructors | |
|---|---|
Concat(const ::tensorflow::Scope & scope, ::tensorflow::InputList values, ::tensorflow::Input axis) |
| Public attributes | |
|---|---|
operation | |
output | |
| Public functions | |
|---|---|
node() const | ::tensorflow::Node * |
operator::tensorflow::Input() const | |
operator::tensorflow::Output() const | |
Public attributes
operation
Operation operation
output
::tensorflow::Output output
Public functions
Concat
Concat( const ::tensorflow::Scope & scope, ::tensorflow::InputList values, ::tensorflow::Input axis )
node
::tensorflow::Node * node() const
operator::tensorflow::Input
operator::tensorflow::Input() const
operator::tensorflow::Output
operator::tensorflow::Output() const
© 2020 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/versions/r2.3/api_docs/cc/class/tensorflow/ops/concat