Connect tensor
How do I connect two tensors?
std::vector
Connect like this in the dimension of axis = 1 to form a tensor of shape dimension (9, 2)
Hi @xiaojun-mbed
CppFlow provides a mapping of TF Raw Ops in cppflow/raw_ops.h.
You can use the mapping of concat:
tensor concat(const tensor& concat_dim, const std::vector<tensor>&values)
Thank you very much for your help! I can't understand the source code. Can you tell me how to do this example
cppflow::tensor add = cppflow::concat(1, vectorcppflow::tensor(t1,t2));

It looks fine. You didn't post the error you getting so is hard to tell.