Hi, Sentis team,
It must be ported from IBackend API to the Functional API for migrate existing code to Sentis 2.0.0.
Is there any way to interconvert between Tensor and FunctionalTensor?
How can I process directly to Tensor like a IBackend API using Functional API without compile new model?
// Sentis 1.6.0-pre.1
var confidences = TensorFloat.AllocNoData(output_tensor.shape);
backend.Softmax(output_tensor, confidences, -1);
Thanks,