TensorDataOrdering
Description
Arrangement of a data elements in a tensor.
Values of this enumeration:
- NHWC - The data elements are arranged in the order: images, image rows, pixels in rows and channel values for each pixel.
- NCHW - The data elements are arranged in the order: images, channel planes, rows and values in row (consider planar images).
- NL - The data elements are arranged in the order: rows of values in linear manner (consider output from classifier).
namespace TensorDataOrdering { enum Type { NHWC, NCHW, NL }; }