[MINOR] Update version in README files

Updated version and removed incubating.


Project: http://git-wip-us.apache.org/repos/asf/systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/288bc35c
Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/288bc35c
Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/288bc35c

Branch: refs/heads/gh-pages
Commit: 288bc35c3f8bde4c3478ad093ade1e03275488e8
Parents: 24245fd
Author: Glenn Weidner <gweid...@us.ibm.com>
Authored: Thu Sep 7 16:42:32 2017 -0700
Committer: Glenn Weidner <gweid...@us.ibm.com>
Committed: Thu Sep 7 16:42:32 2017 -0700

----------------------------------------------------------------------
 spark-mlcontext-programming-guide.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/288bc35c/spark-mlcontext-programming-guide.md
----------------------------------------------------------------------
diff --git a/spark-mlcontext-programming-guide.md 
b/spark-mlcontext-programming-guide.md
index 22f5a1b..e935c65 100644
--- a/spark-mlcontext-programming-guide.md
+++ b/spark-mlcontext-programming-guide.md
@@ -174,7 +174,7 @@ MLResults
 
 ## LeNet on MNIST Example
 
-SystemML features the DML-based [`nn` library for deep 
learning](https://github.com/apache/incubator-systemml/tree/master/scripts/nn).
+SystemML features the DML-based [`nn` library for deep 
learning](https://github.com/apache/systemml/tree/master/scripts/nn).
 
 At project build time, SystemML automatically generates wrapper classes for 
DML scripts
 to enable convenient access to scripts and execution of functions.
@@ -1220,7 +1220,7 @@ via `ml.scripts.algorithms.Univar_Stats`, as shown below. 
This feature is not av
 {% highlight scala %}
 val habermanUrl = 
"http://archive.ics.uci.edu/ml/machine-learning-databases/haberman/haberman.data";
 val typesRDD = sc.parallelize(Array("1.0,1.0,1.0,2.0"))
-val scriptUrl = 
"https://raw.githubusercontent.com/apache/incubator-systemml/master/scripts/algorithms/Univar-Stats.dml";
+val scriptUrl = 
"https://raw.githubusercontent.com/apache/systemml/master/scripts/algorithms/Univar-Stats.dml";
 ml.scripts.algorithms.Univar_Stats.in("A", new 
java.net.URL(habermanUrl)).in("K", typesRDD).in("$CONSOLE_OUTPUT", true).execute
 {% endhighlight %}
 </div>
@@ -1233,8 +1233,8 @@ habermanUrl: String = 
http://archive.ics.uci.edu/ml/machine-learning-databases/h
 scala> val typesRDD = sc.parallelize(Array("1.0,1.0,1.0,2.0"))
 typesRDD: org.apache.spark.rdd.RDD[String] = ParallelCollectionRDD[21] at 
parallelize at <console>:30
 
-scala> val scriptUrl = 
"https://raw.githubusercontent.com/apache/incubator-systemml/master/scripts/algorithms/Univar-Stats.dml";
-scriptUrl: String = 
https://raw.githubusercontent.com/apache/incubator-systemml/master/scripts/algorithms/Univar-Stats.dml
+scala> val scriptUrl = 
"https://raw.githubusercontent.com/apache/systemml/master/scripts/algorithms/Univar-Stats.dml";
+scriptUrl: String = 
https://raw.githubusercontent.com/apache/systemml/master/scripts/algorithms/Univar-Stats.dml
 
 scala> ml.scripts.algorithms.Univar_Stats.in("A", new 
java.net.URL(habermanUrl)).in("K", typesRDD).in("$CONSOLE_OUTPUT", true).execute
 17/06/05 17:23:37 WARN RewriteRemovePersistentReadWrite: Non-registered 
persistent write of variable 'baseStats' (line 186).

Reply via email to