From 14e1e7e0400d85760e6065fb5ce3accf080e937a Mon Sep 17 00:00:00 2001 From: Holden Karau Date: Tue, 3 May 2016 16:57:51 -0700 Subject: [PATCH 1/3] Remove BETA tags --- mllib/src/main/scala/org/apache/spark/ml/package-info.java | 2 +- mllib/src/main/scala/org/apache/spark/ml/package.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 87f4223964ada..9a40f5dd69136 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 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 c589d06d9f7e4..5cc328b4a9a13 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 From 949fd16ee000230664b3e773941f1b960b04042a Mon Sep 17 00:00:00 2001 From: Holden Karau Date: Tue, 3 May 2016 16:58:17 -0700 Subject: [PATCH 2/3] Add ML package doc --- python/pyspark/ml/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/pyspark/ml/__init__.py b/python/pyspark/ml/__init__.py index 25cfac02f383d..e11f94b13035d 100644 --- a/python/pyspark/ml/__init__.py +++ b/python/pyspark/ml/__init__.py @@ -15,6 +15,11 @@ # 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 From 51c9ae90804118fa4c2f30b49781ab87e55a1667 Mon Sep 17 00:00:00 2001 From: Holden Karau Date: Tue, 3 May 2016 17:21:35 -0700 Subject: [PATCH 3/3] Remove line after pydoc before imports to match other __init__ pydoc's --- python/pyspark/ml/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/pyspark/ml/__init__.py b/python/pyspark/ml/__init__.py index e11f94b13035d..05f3be5f0d6e7 100644 --- a/python/pyspark/ml/__init__.py +++ b/python/pyspark/ml/__init__.py @@ -19,7 +19,6 @@ 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