micropost
Today’s TensorFlow madness:
tensorflow::Tensor
has a method tensor()
that returns another kind of tensor
tensorflow::TTypes<T, NDIMS>::Tensor
Which is typedef’d as
Eigen::TensorMap<…>
which is a slice over some data which it presents as if it were
Eigen::Tensor<…>
🤯😵