Re: [scikit-learn] Random Forest Regressor -- Implementation in C++

2018-11-07 Thread Olivier Grisel
You might also want to have a look at https://github.com/onnx/onnxmltools although I am not sure if there are RF optimized ONNX runtimes at this point. -- Olivier ___ scikit-learn mailing list scikit-learn@python.org https://mail.python.org/mailman/listi

Re: [scikit-learn] Random Forest Regressor -- Implementation in C++

2018-11-06 Thread Joel Nothman
See https://github.com/ajtulloch/sklearn-compiledtrees/ and https://github.com/nok/sklearn-porter ___ scikit-learn mailing list scikit-learn@python.org https://mail.python.org/mailman/listinfo/scikit-learn

[scikit-learn] Random Forest Regressor -- Implementation in C++

2018-11-06 Thread Chidhambaranathan R
Hi all, I'm using sklearn Randon Forest Regressor. I have trained the model in Python and dumped the model using Pickle. The model is used inside C++ application for prediction. Currently I have implemented predict function using "Embedding Python in C++" concept. However, the problem is, it is ca