TensorFlowSharp is the wrapper of TensorFlow in c# platform. click it to jump to TensorFlowSharp github
Now i need to reshape a tensor with shape [32,64,1] into a new tensor with shape [1, 2048].But as i refer to the official API document, the usage seems like that:
TFOutput Reshape (TensorFlow.TFOutput tensor, TensorFlow.TFOutput shape);
the problem is that i dont know how to express the shape i need in the way of TFOutput
Any suggestions will be appreciated:)!