Skip to content

Commit 14ae7e2

Browse files
author
Davies Liu
committed
fix docs
1 parent 54ca7df commit 14ae7e2

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

python/docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '1.2-SNAPSHOT'
58+
version = '1.3-SNAPSHOT'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.2-SNAPSHOT'
60+
release = '1.3-SNAPSHOT'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

python/docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Contents:
1414
pyspark
1515
pyspark.sql
1616
pyspark.streaming
17+
pyspark.ml
1718
pyspark.mllib
1819

1920

python/docs/pyspark.ml.rst

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,6 @@ pyspark.ml module
1010
.. automodule:: pyspark.ml
1111
:members:
1212
:undoc-members:
13-
:show-inheritance:
14-
:inherited-members:
15-
16-
pyspark.ml.param module
17-
-----------------------
18-
19-
.. automodule:: pyspark.ml.param
20-
:members:
21-
:undoc-members:
22-
:show-inheritance:
2313
:inherited-members:
2414

2515
pyspark.ml.feature module
@@ -28,7 +18,6 @@ pyspark.ml.feature module
2818
.. automodule:: pyspark.ml.feature
2919
:members:
3020
:undoc-members:
31-
:show-inheritance:
3221
:inherited-members:
3322

3423
pyspark.ml.classification module
@@ -37,5 +26,4 @@ pyspark.ml.classification module
3726
.. automodule:: pyspark.ml.classification
3827
:members:
3928
:undoc-members:
40-
:show-inheritance:
4129
:inherited-members:

python/pyspark/ml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from pyspark.ml.param import *
1919
from pyspark.ml.pipeline import *
2020

21-
__all__ = ["Param", "Params", "Pipeline", "Transformer", "Estimator"]
21+
__all__ = ["Param", "Params", "Transformer", "Estimator", "Pipeline"]

0 commit comments

Comments
 (0)