sklearn-onnx
sklearn-onnx copied to clipboard
Can onnx converted by "convert_sklearn" run on GPU?
As the title, If I convert RandomForestClassifier
to an ONNX model, how can we run it on GPUs?
It depends on the runtime you are using. onnxruntime has currently only one cpu implementation for TreeEnsembleClassifier.
You could use hummingbird to convert your tree into a neural network and then run it on GPU.