Skip to content

Commit

Permalink
Address huaxingao comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zero323 committed Feb 19, 2020
1 parent 63e2fcc commit 0b0f723
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions python/pyspark/ml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@

__all__ = [
"Transformer", "UnaryTransformer", "Estimator", "Model",
"Predictor", "PredictionModel",
"Pipeline", "PipelineModel",
"Predictor", "PredictionModel", "Pipeline", "PipelineModel",
"classification", "clustering", "evaluation", "feature", "fpm", "image",
"recommendation", "regression", "stat", "tuning", "util", "linalg", "param",
]
4 changes: 2 additions & 2 deletions python/pyspark/ml/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def predictRaw(self, value):

class _ProbabilisticClassifierParams(HasProbabilityCol, HasThresholds, _ClassifierParams):
"""
Params for :py:class:`_JavaProbabilisticClassifier` and
:py:class:`_JavaProbabilisticClassificationModel`.
Params for :py:class:`ProbabilisticClassifier` and
:py:class:`ProbabilisticClassificationModel`.
.. versionadded:: 3.0.0
"""
Expand Down

0 comments on commit 0b0f723

Please sign in to comment.