Repository: spark
Updated Branches:
  refs/heads/branch-2.0 0c4e42bea -> 743f07d74


[SPARK-15106][PYSPARK][ML] Add PySpark package doc for ML component & remove 
"BETA"

## What changes were proposed in this pull request?

Copy the package documentation from Scala/Java to Python for ML package and 
remove beta tags. Not super sure if we want to keep the BETA tag but since we 
are making it the default it seems like probably the time to remove it (happy 
to put it back in if we want to keep it BETA).

## How was this patch tested?

Python documentation built locally as HTML and text and verified output.

Author: Holden Karau <hol...@us.ibm.com>

Closes #12883 from holdenk/SPARK-15106-add-pyspark-package-doc-for-ml.

(cherry picked from commit 4c0d827cfc30243893b0f6c0b496e2e0c866cb54)
Signed-off-by: Sean Owen <so...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/743f07d7
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/743f07d7
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/743f07d7

Branch: refs/heads/branch-2.0
Commit: 743f07d74d8322c1eb2100f44c058c4944709f1c
Parents: 0c4e42b
Author: Holden Karau <hol...@us.ibm.com>
Authored: Thu May 5 10:52:25 2016 +0100
Committer: Sean Owen <so...@cloudera.com>
Committed: Thu May 5 10:52:33 2016 +0100

----------------------------------------------------------------------
 mllib/src/main/scala/org/apache/spark/ml/package-info.java | 2 +-
 mllib/src/main/scala/org/apache/spark/ml/package.scala     | 2 +-
 python/pyspark/ml/__init__.py                              | 4 ++++
 3 files changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/743f07d7/mllib/src/main/scala/org/apache/spark/ml/package-info.java
----------------------------------------------------------------------
diff --git a/mllib/src/main/scala/org/apache/spark/ml/package-info.java 
b/mllib/src/main/scala/org/apache/spark/ml/package-info.java
index 87f4223..9a40f5dd 100644
--- a/mllib/src/main/scala/org/apache/spark/ml/package-info.java
+++ b/mllib/src/main/scala/org/apache/spark/ml/package-info.java
@@ -16,7 +16,7 @@
  */
 
 /**
- * Spark ML is a BETA component that adds a new set of machine learning APIs 
to let users quickly
+ * Spark ML is a component that adds a new set of machine learning APIs to let 
users quickly
  * assemble and configure practical machine learning pipelines.
  */
 @Experimental

http://git-wip-us.apache.org/repos/asf/spark/blob/743f07d7/mllib/src/main/scala/org/apache/spark/ml/package.scala
----------------------------------------------------------------------
diff --git a/mllib/src/main/scala/org/apache/spark/ml/package.scala 
b/mllib/src/main/scala/org/apache/spark/ml/package.scala
index c589d06..5cc328b 100644
--- a/mllib/src/main/scala/org/apache/spark/ml/package.scala
+++ b/mllib/src/main/scala/org/apache/spark/ml/package.scala
@@ -18,7 +18,7 @@
 package org.apache.spark
 
 /**
- * Spark ML is a BETA component that adds a new set of machine learning APIs 
to let users quickly
+ * Spark ML is a component that adds a new set of machine learning APIs to let 
users quickly
  * assemble and configure practical machine learning pipelines.
  *
  * @groupname param Parameters

http://git-wip-us.apache.org/repos/asf/spark/blob/743f07d7/python/pyspark/ml/__init__.py
----------------------------------------------------------------------
diff --git a/python/pyspark/ml/__init__.py b/python/pyspark/ml/__init__.py
index 25cfac0..05f3be5 100644
--- a/python/pyspark/ml/__init__.py
+++ b/python/pyspark/ml/__init__.py
@@ -15,6 +15,10 @@
 # limitations under the License.
 #
 
+"""
+Spark ML is a component that adds a new set of machine learning APIs to let 
users quickly
+assemble and configure practical machine learning pipelines.
+"""
 from pyspark.ml.base import Estimator, Model, Transformer
 from pyspark.ml.pipeline import Pipeline, PipelineModel
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to