I've got a trained scikit-learn classifier (Python) and I need to use it into a Java program. I know that I can store my python classifier (clf) as follow:
joblib.dump(clf, 'my_model.pkl', compress=_)
I also know that there is the python-weka-wrapper library with wich we can use weka classifiers in python, but I would to operate in the opposite way. I need a way to load my *.pkl file into a java program, create another classifier (for example using weka API) and initialize it with info contained in this file. Is there a way to do that?