ONNX Runtime is a cross-platform inference and training machine-learning accelerator.
Questions tagged [onnxruntime]
292 questions
-1
votes
1 answer
Can't create an inference session in onnxruntime
I am not able to create an instance of InferenceSession using onnxruntime. My platform is Mac OS(Big Sur). The code doesn't even throw any exceptions. Process is simply being killed. The same code works perfectly on Windows. Here are the…

Niyazi Babayev
- 120
- 2
- 9
-1
votes
1 answer
How to Export Stanza to ONNX format?
How to export Stanza to ONNX format?
It seems impossible to just simply train the model.
-1
votes
2 answers
Object detection on Raspberry PI using customvision.ai/.NET 5
We have written a x-plat worker service using .NET 5 that is running on a Raspberry PI 4 (Raspberry Pi OS). We have trained a custom vision object detection model on customvision.ai, exported it to ONNX and it all works well on Windows.
We are now…

mansos
- 57
- 5
-1
votes
1 answer
How to access DisposableList in C# coding for Microsoft.ML.onnxruntime?
May i know how to display the values circled in yellow in the console.
i tried
using (var results = Session.Run(outputs))
{
var highestIndex = results.First().AsTensor().First();
…

hanzgs
- 1,498
- 17
- 44
-1
votes
1 answer
Print ONNXRUNTIME::Graph without having Model
I'm working on new optimizer that inherits from GraphTransformer in c++
How can I view the changes that I made, just after ApplyImpl ends
I tried graph.ToGraphProto() but I cannot save it
And I need to make a new Model to be able to save it and…

Dor marcus
- 41
- 5
-2
votes
0 answers
How do I fix "no such file" for single_add.ort while building ONNX basic usage example?
We want to add ONNX runtime to our iOS Swift app so we can run our .onnx model.
I cloned https://github.com/microsoft/onnxruntime-inference-examples.git but when xcode tries to…

Doug Null
- 7,989
- 15
- 69
- 148