Repository: systemml Updated Branches: refs/heads/master d0c5c5d29 -> 116f18a73
[SYSTEMML-1672] Migrate incubator-systemml to systemml in src Update 'incubator-systemml' references to 'systemml' in src folder. Project: http://git-wip-us.apache.org/repos/asf/systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/116f18a7 Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/116f18a7 Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/116f18a7 Branch: refs/heads/master Commit: 116f18a734f35031de6de62038a2aaa88da84abe Parents: d0c5c5d Author: Deron Eriksson <[email protected]> Authored: Thu Jun 8 16:36:14 2017 -0700 Committer: Deron Eriksson <[email protected]> Committed: Thu Jun 8 16:36:14 2017 -0700 ---------------------------------------------------------------------- .../java/org/apache/sysml/api/jmlc/Connection.java | 2 +- src/main/standalone/README.txt | 10 +++++----- .../test/integration/mlcontext/MLContextTest.java | 16 ++++++++-------- 3 files changed, 14 insertions(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/systemml/blob/116f18a7/src/main/java/org/apache/sysml/api/jmlc/Connection.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/sysml/api/jmlc/Connection.java b/src/main/java/org/apache/sysml/api/jmlc/Connection.java index 6f25c29..689ffc7 100644 --- a/src/main/java/org/apache/sysml/api/jmlc/Connection.java +++ b/src/main/java/org/apache/sysml/api/jmlc/Connection.java @@ -86,7 +86,7 @@ import org.apache.wink.json4j.JSONObject; * For examples, please see the following: * <ul> * <li>JMLC JUnit test cases (org.apache.sysml.test.integration.functions.jmlc)</li> - * <li><a target="_blank" href="http://apache.github.io/incubator-systemml/jmlc.html">JMLC section + * <li><a target="_blank" href="http://apache.github.io/systemml/jmlc.html">JMLC section * of SystemML online documentation</a></li> * </ul> */ http://git-wip-us.apache.org/repos/asf/systemml/blob/116f18a7/src/main/standalone/README.txt ---------------------------------------------------------------------- diff --git a/src/main/standalone/README.txt b/src/main/standalone/README.txt index dcdc477..316b569 100644 --- a/src/main/standalone/README.txt +++ b/src/main/standalone/README.txt @@ -16,7 +16,7 @@ limitations under the License. # Apache SystemML -**Documentation:** [SystemML Documentation](http://apache.github.io/incubator-systemml/) +**Documentation:** [SystemML Documentation](http://apache.github.io/systemml/) **Mailing List:** [Dev Mailing List](mailto:[email protected]) **Build Status:** [](https://sparktc.ibmcloud.com/jenkins/job/SystemML-DailyTest) **Issue Tracker:** [JIRA](https://issues.apache.org/jira/browse/SYSTEMML) @@ -53,7 +53,7 @@ algorithms locally without need of a distributed cluster. In order to scale up, across a cluster using Spark or Hadoop. This flexibility allows the utilization of an organization's existing resources and expertise. In addition, SystemML features a -[Spark MLContext API](http://apache.github.io/incubator-systemml/spark-mlcontext-programming-guide.html) +[Spark MLContext API](http://apache.github.io/systemml/spark-mlcontext-programming-guide.html) that allows for programmatic interaction via Scala, Python, and Java. SystemML also features an embedded API for scoring models. @@ -71,7 +71,7 @@ distributed runtime execution plans and system configurations. SystemML features a suite of production-level examples that can be grouped into six broad categories: Descriptive Statistics, Classification, Clustering, Regression, Matrix Factorization, and Survival Analysis. Detailed descriptions of these algorithms can be found in the -[SystemML Algorithms Reference](http://apache.github.io/incubator-systemml/algorithms-reference.html). The goal of these provided algorithms is to serve as production-level examples that can modified or used as inspiration for a new custom algorithm. +[SystemML Algorithms Reference](http://apache.github.io/systemml/algorithms-reference.html). The goal of these provided algorithms is to serve as production-level examples that can modified or used as inspiration for a new custom algorithm. ## Download & Setup @@ -132,6 +132,6 @@ Before you get started on SystemML, make sure that your environment is set up an ## Next Steps! To get started, please consult the -[SystemML Documentation](http://apache.github.io/incubator-systemml/) website on GitHub. We -recommend using the [Spark MLContext API](http://apache.github.io/incubator-systemml/spark-mlcontext-programming-guide.html) +[SystemML Documentation](http://apache.github.io/systemml/) website on GitHub. We +recommend using the [Spark MLContext API](http://apache.github.io/systemml/spark-mlcontext-programming-guide.html) to run SystemML from Scala or Python using `spark-shell`, `pyspark`, or `spark-submit`. http://git-wip-us.apache.org/repos/asf/systemml/blob/116f18a7/src/test/java/org/apache/sysml/test/integration/mlcontext/MLContextTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/sysml/test/integration/mlcontext/MLContextTest.java b/src/test/java/org/apache/sysml/test/integration/mlcontext/MLContextTest.java index 852df72..8bb09e2 100644 --- a/src/test/java/org/apache/sysml/test/integration/mlcontext/MLContextTest.java +++ b/src/test/java/org/apache/sysml/test/integration/mlcontext/MLContextTest.java @@ -182,7 +182,7 @@ public class MLContextTest extends AutomatedTestBase { @Test public void testCreateDMLScriptBasedOnURL() throws MalformedURLException { System.out.println("MLContextTest - create DML script based on URL"); - String urlString = "https://raw.githubusercontent.com/apache/incubator-systemml/master/src/test/scripts/applications/hits/HITS.dml"; + String urlString = "https://raw.githubusercontent.com/apache/systemml/master/src/test/scripts/applications/hits/HITS.dml"; URL url = new URL(urlString); Script script = dmlFromUrl(url); String expectedContent = "Licensed to the Apache Software Foundation"; @@ -193,7 +193,7 @@ public class MLContextTest extends AutomatedTestBase { @Test public void testCreatePYDMLScriptBasedOnURL() throws MalformedURLException { System.out.println("MLContextTest - create PYDML script based on URL"); - String urlString = "https://raw.githubusercontent.com/apache/incubator-systemml/master/src/test/scripts/applications/hits/HITS.pydml"; + String urlString = "https://raw.githubusercontent.com/apache/systemml/master/src/test/scripts/applications/hits/HITS.pydml"; URL url = new URL(urlString); Script script = pydmlFromUrl(url); String expectedContent = "Licensed to the Apache Software Foundation"; @@ -204,7 +204,7 @@ public class MLContextTest extends AutomatedTestBase { @Test public void testCreateDMLScriptBasedOnURLString() throws MalformedURLException { System.out.println("MLContextTest - create DML script based on URL string"); - String urlString = "https://raw.githubusercontent.com/apache/incubator-systemml/master/src/test/scripts/applications/hits/HITS.dml"; + String urlString = "https://raw.githubusercontent.com/apache/systemml/master/src/test/scripts/applications/hits/HITS.dml"; Script script = dmlFromUrl(urlString); String expectedContent = "Licensed to the Apache Software Foundation"; String s = script.getScriptString(); @@ -214,7 +214,7 @@ public class MLContextTest extends AutomatedTestBase { @Test public void testCreatePYDMLScriptBasedOnURLString() throws MalformedURLException { System.out.println("MLContextTest - create PYDML script based on URL string"); - String urlString = "https://raw.githubusercontent.com/apache/incubator-systemml/master/src/test/scripts/applications/hits/HITS.pydml"; + String urlString = "https://raw.githubusercontent.com/apache/systemml/master/src/test/scripts/applications/hits/HITS.pydml"; Script script = pydmlFromUrl(urlString); String expectedContent = "Licensed to the Apache Software Foundation"; String s = script.getScriptString(); @@ -2128,7 +2128,7 @@ public class MLContextTest extends AutomatedTestBase { @Test public void testCSVMatrixFromURLSumDML() throws MalformedURLException { System.out.println("MLContextTest - CSV matrix from URL sum DML"); - String csv = "https://raw.githubusercontent.com/apache/incubator-systemml/master/src/test/scripts/org/apache/sysml/api/mlcontext/1234.csv"; + String csv = "https://raw.githubusercontent.com/apache/systemml/master/src/test/scripts/org/apache/sysml/api/mlcontext/1234.csv"; URL url = new URL(csv); Script script = dml("print('sum: ' + sum(M));").in("M", url); setExpectedStdOut("sum: 10.0"); @@ -2138,7 +2138,7 @@ public class MLContextTest extends AutomatedTestBase { @Test public void testCSVMatrixFromURLSumPYDML() throws MalformedURLException { System.out.println("MLContextTest - CSV matrix from URL sum PYDML"); - String csv = "https://raw.githubusercontent.com/apache/incubator-systemml/master/src/test/scripts/org/apache/sysml/api/mlcontext/1234.csv"; + String csv = "https://raw.githubusercontent.com/apache/systemml/master/src/test/scripts/org/apache/sysml/api/mlcontext/1234.csv"; URL url = new URL(csv); Script script = pydml("print('sum: ' + sum(M))").in("M", url); setExpectedStdOut("sum: 10.0"); @@ -2148,7 +2148,7 @@ public class MLContextTest extends AutomatedTestBase { @Test public void testIJVMatrixFromURLSumDML() throws MalformedURLException { System.out.println("MLContextTest - IJV matrix from URL sum DML"); - String ijv = "https://raw.githubusercontent.com/apache/incubator-systemml/master/src/test/scripts/org/apache/sysml/api/mlcontext/1234.ijv"; + String ijv = "https://raw.githubusercontent.com/apache/systemml/master/src/test/scripts/org/apache/sysml/api/mlcontext/1234.ijv"; URL url = new URL(ijv); MatrixMetadata mm = new MatrixMetadata(MatrixFormat.IJV, 2, 2); Script script = dml("print('sum: ' + sum(M));").in("M", url, mm); @@ -2159,7 +2159,7 @@ public class MLContextTest extends AutomatedTestBase { @Test public void testIJVMatrixFromURLSumPYDML() throws MalformedURLException { System.out.println("MLContextTest - IJV matrix from URL sum PYDML"); - String ijv = "https://raw.githubusercontent.com/apache/incubator-systemml/master/src/test/scripts/org/apache/sysml/api/mlcontext/1234.ijv"; + String ijv = "https://raw.githubusercontent.com/apache/systemml/master/src/test/scripts/org/apache/sysml/api/mlcontext/1234.ijv"; URL url = new URL(ijv); MatrixMetadata mm = new MatrixMetadata(MatrixFormat.IJV, 2, 2); Script script = pydml("print('sum: ' + sum(M))").in("M", url, mm);
