-1

SystemML 在https://github.com/SparkTC/systemml上可用 我如何开始使用它?我是 GitHub 的新手。

我在我的 Ubuntu 中创建了一个目录并复制了 POM.xml 文件 - 当我发布 mvn clean 包时,我收到了错误:

mvn clean package
[INFO] Scanning for projects...
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]   
[ERROR]   The project com.ibm.systemml:systemml-parent:5.2-SNAPSHOT (/home/vmuser/system-ml/pom.xml) has 1 error
[ERROR]     Child module /home/vmuser/system-ml/system-ml of /home/vmuser/system-ml/pom.xml does not exist
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException

当我去 R 并在 R 64 位版本 3.1.1 上发出以下命令时,我也得到了错误:

> install.packages(c("batch", "bitops", "boot", "caTools", "data.table", "doMC", "doSNOW", "ggplot2", "glmnet", "lda", "Matrix", "matrixStats", "moments", "plotrix", "psych", "reshape", "topicmodels", "wordcloud", "methods"), dependencies=TRUE)
--- Please select a CRAN mirror for use in this session ---
Warning: unable to access index for repository https://cran.rstudio.com/bin/windows/contrib/3.1
Warning: package ‘methods’ is in use and will not be installed
Warning message:
packages ‘batch’, ‘bitops’, ‘boot’, ‘caTools’, ‘data.table’, ‘doMC’, ‘doSNOW’, ‘ggplot2’, ‘glmnet’, ‘lda’, ‘Matrix’, ‘matrixStats’, ‘moments’, ‘plotrix’, ‘psych’, ‘reshape’, ‘topicmodels’, ‘wordcloud’ are not available (for R version 3.1.1) 
> 
4

2 回答 2

1

SystemML 于 2015 年 11 月成为 Apache(孵化)项目。其主要网站位于http://systemml.apache.org/。现在可以在 GitHub 上的https://github.com/apache/incubator-systemml找到该项目。

开始使用 Apache SystemML 的最快方法可能是从 Apache SystemML 下载页面(参见主网站)下载预构建的发布包。有关 Apache SystemML 的信息可以在 Apache SystemML 文档站点上找到,该站点从主站点链接到该站点。这包括有关在笔记本、Spark 和 Hadoop 上运行 SystemML 的信息。

如果您想克隆 SystemML 存储库并使用 Maven 在本地构建它,可以在 GitHub 上的项目 README 中找到执行此操作的说明。

于 2016-06-03T21:21:14.473 回答
1

您收到的错误消息告诉您问题是什么(格式化我的):

项目com.ibm.systemml:systemml-parent:5.2-SNAPSHOT( /home/vmuser/system-ml/pom.xml) 有 1 个错误

/home/vmuser/system-ml/system-ml的子模块/home/vmuser/system-ml/pom.xml不存在

你说:

我在我的 Ubuntu 中创建了一个目录并复制了 POM.xml 文件

您不仅需要pom.xml文件;你需要整个项目。git clone它或者下载源代码作为 zip并解压缩,然后mvn clean package从项目目录运行。

git clone如果您打算修改源代码,这是一个更好的选择。它将为您提供一些强大的工具来集成上游更改并将您的修改提交到父项目。如果您只想按原样使用项目,则任何一个选项都可以。

于 2015-09-26T01:15:38.887 回答