Repository: spark Updated Branches: refs/heads/master b7fdc23cc -> 4c0d827cf
[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 <[email protected]> Closes #12883 from holdenk/SPARK-15106-add-pyspark-package-doc-for-ml. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/4c0d827c Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/4c0d827c Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/4c0d827c Branch: refs/heads/master Commit: 4c0d827cfc30243893b0f6c0b496e2e0c866cb54 Parents: b7fdc23 Author: Holden Karau <[email protected]> Authored: Thu May 5 10:52:25 2016 +0100 Committer: Sean Owen <[email protected]> Committed: Thu May 5 10:52:25 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/4c0d827c/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/4c0d827c/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/4c0d827c/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: [email protected] For additional commands, e-mail: [email protected]
