You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created a model in scikit-learn using Random Forest Classifier and converted it to ONNX using sk2onnx. I want to run this model for a large set of samples on Android smartphone using C++ onnx runtime. In my C++ code I enable Nnapi provider:
I checked that onnx runtime detects Nnapi provider (using Ort::GetAvailableProviders()), it finds NNAPIExecutionProvider. Unfortunately there is no any acceleration comparing to CPU-only runs. Is there a way to accelerate the inference of Random Forest model?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I created a model in scikit-learn using Random Forest Classifier and converted it to ONNX using sk2onnx. I want to run this model for a large set of samples on Android smartphone using C++ onnx runtime. In my C++ code I enable Nnapi provider:
I checked that onnx runtime detects Nnapi provider (using
Ort::GetAvailableProviders()
), it findsNNAPIExecutionProvider
. Unfortunately there is no any acceleration comparing to CPU-only runs. Is there a way to accelerate the inference of Random Forest model?Beta Was this translation helpful? Give feedback.
All reactions