From 4c0d827cfc30243893b0f6c0b496e2e0c866cb54 Mon Sep 17 00:00:00 2001 From: Holden Karau Date: Thu, 5 May 2016 10:52:25 +0100 Subject: [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 Closes #12883 from holdenk/SPARK-15106-add-pyspark-package-doc-for-ml. --- python/pyspark/ml/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'python') diff --git a/python/pyspark/ml/__init__.py b/python/pyspark/ml/__init__.py index 25cfac02f3..05f3be5f0d 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 -- cgit v1.2.3