Skip to content

outputTensors changed types with onnxruntime versions? #15123

Answered by gasar8
gasar8 asked this question in Other Q&A
Discussion options

You must be logged in to vote

I think I got the answer, the problem is indeed the value assignment:

Ort::Value &value = outputTensors.front();

It was fixed by changing it to second outputTensors element:

Ort::Value &value = outputTensors[1];

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by gasar8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant