I'm trying to create an Android App that incorporates a Machine Learning Model. I had an onnx model, along with a Python script file, two json files with the label names, and some numpy data for mel spectrograms computation.
I tried to go with onnxruntime, and followed these instructions. So now I have created the model.ort file out of the onnx model and "A minimal build for Android with NNAPI support", so I have the Build onnxruntime pkg.
Since I'm completely new at this, how do I continue from here?
How do I "inference on device"?
And also, will I have to convert my python script that runs the model to Java? Thank you!