Jython无法加载Scikit模块

时间:2017-12-26 17:25:36

标签: python scikit-learn jython

我试图使用Jython从Scikit模型中获取预测。但是Jyton没有使用奇怪的AttributeError导入scikit模块。

这是Java例外:

Exception in thread "MainThread" Traceback (most recent call last):  
 File "C:/pydata/loadModel.py", line 1, in <module>
     from sklearn.externals import joblib   File "C:\Python\Python36\Lib\site-packages\sklearn\__init__.py",
 line 98, in <module>
    warnings.filterwarnings('always', category=DeprecationWarning, 
AttributeError: 'str' object has no attribute 'format'

这就是我在Java中加载模块的方法

        PythonInterpreter intep = new PythonInterpreter();

        PySystemState sys = intep.getSystemState();            
        sys.path.append(new PyString("C:\\Python\\Python36\\Lib\\site-packages"));

        intep.execfile("C:/pydata/loadModel.py");

我在Java8上使用Python 3.6.3和Jython-Standalone 2.5.2

由于

0 个答案:

没有答案