I'm using Microsoft Custom Vision to build an image classifier. Then, I'm able to download the ONNX file and get probabilities from the Model on a WPF app.
My issue is that I'm not able to get labels for those probabilities.
Under netron.app the neural network looks like this: ONNX model inputs and outputs
but since I'm not having an output that is referencing a string I'm assuming that I can't get the labels from this ONNX. Am I right?
Another hypothesis is to assume that the index on the label file match the output index of the ONNX. But how could I validate that?