SystemML:无法导入子模块 mllearn(因此无法导入 Keras2DML 函数)



我正在使用IBM Watson Studio(默认的Spark python环境(,并尝试将Keras模型转换为systemml DML并在Spark上进行训练。

!pip install systemml 
import systemml

这执行得很好。可是这个——

from systemml import mllearn 

抛出 语法错误:导入 * 只允许在模块级别

dir(systemml)

不显示 MLLEARN。

我尝试从 http://www.romeokienzler.com/systemml-1.0.0-SNAPSHOT-python.tar.gz 安装它并 https://sparktc.ibmcloud.com/repo/latest/systemml-1.0.0-SNAPSHOT-python.tar.gz 和一个 git 克隆,但没有成功。我做错了什么?

你需要做dir(systemml.mllearn(来查看mllearn函数。

>>> dir(systemml.mllearn)
['Caffe2DML', 'Keras2DML', 'LinearRegression', 'LogisticRegression', 
'NaiveBayes', 'SVM', '__all__', '__builtins__', '__doc__', '__file__', 
'__name__', '__package__', '__path__', 'estimators']

请从 pypi.org 安装 SystemML 1.2,1.2 是 2018 年 8 月的最新版本。1.0 版只有实验性支持。

您能否尝试仅导入 MLContext,只是为了查看加载主 SystemML jar 文件是否有效,以及您的安装使用什么版本?

>>> from systemml import MLContext
>>> ml = MLContext(sc)
Welcome to Apache SystemML!
Version 1.2.0
>>> print (ml.buildTime())
2018-08-17 05:58:31 UTC
>>> from sklearn import datasets, neighbors
>>> from systemml.mllearn import LogisticRegression
>>> y_digits = digits.target 
>>> n_samples = len(X_digits) 
>>> X_train = X_digits[:int(.9 * n_samples)] 
>>> y_train = y_digits[:int(.9 * n_samples)] 
>>> X_test = X_digits[int(.9 * n_samples):] 
>>> y_test = y_digits[int(.9 * n_samples):] 
>>> 
>>> logistic = LogisticRegression(spark)
>>> 
>>> print('LogisticRegression score: %f' % logistic.fit(X_train, y_train).score(X_test, y_test))
18/10/20 00:15:52 WARN BaseSystemMLEstimatorOrModel: SystemML local memory     budget:5097 mb. Approximate free memory available on the driver JVM:416 mb.
18/10/20 00:15:52 WARN StatementBlock: WARNING: [line 81:0] -> maxinneriter --     Variable maxinneriter defined with different value type in if and else clause.
18/10/20 00:15:53 WARN SparkExecutionContext: Configuration parameter     spark.driver.maxResultSize set to 1 GB. You can set it through Spark default configuration setting either to 0 (unlimited) or to available memory budget of size 4 GB.
BEGIN MULTINOMIAL LOGISTIC REGRESSION SCRIPT
...

该代码适用于 Python 2.7 内核,但不适用于 Python 3.5 内核。提交 https://github.com/apache/systemml/commit/9e7ee19a45102f7cbb37507da25b1ba0641868fd 修复了 Python 3.5 的问题。如果要在本地环境中修复较旧的发布版本,请执行两个步骤:

A. 修复了 Python 3.5 的缩进要求:

pip install autopep8
find /<location>/systemml/ -name '*.py' | xargs autopep8 --in-place --aggressive
find /<location>/systemml/mllearn/ -name '*.py' | xargs autopep8 --in-place --aggressive

您可以使用pip show systemml找到<location>

B. 修复了更严格的 Python 3.5 语法: 替换 mllearn/估计器中的行.py

from .keras2caffe import *

import keras
from .keras2caffe import convertKerasToCaffeNetwork, convertKerasToCaffeSolver​​​​​​​, convertKerasToSystemMLModel 

由于修复程序已经交付,因此您将不得不等待下一个版本,即1.3.0。或者,您可以构建并安装最新版本:

git clone https://github.com/apache/systemml.git
cd systemml
mvn package -P distribution
pip install target/systemml-1.3.0-SNAPSHOT-python.tar.gz

谢谢

耐克坦。

final,如果您正在使用 IBM 云笔记本,这是完美的工作

1(

! pip install --upgrade https://github.com/niketanpansare/future_of_data/raw/master/systemml-1.3.0-SNAPSHOT-python.tar.gz

2(

!ln -s -f /home/spark/shared/user-libs/python3/systemml/systemml-java/systemml-1.3.0-SNAPSHOT-extra.jar ~/user-libs/spark2/systemml-1.3.0-SNAPSHOT-extra.jar

!ln -s -f /home/spark/shared/user-libs/python3/systemml/systemml-java/systemml-1.3.0-SNAPSHOT.jar ~/user-libs/spark2/systemml-1.3.0-SNAPSHOT.jar

~
~

相关内容

  • 没有找到相关文章

最新更新