Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mllib/src/main/scala/org/apache/spark/ml/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mllib/src/main/scala/org/apache/spark/ml/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions python/pyspark/ml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down