spark-instrumented-optimizer/python/pyspark/ml/param
Yanbo Liang b656e6134f [SPARK-10026] [ML] [PySpark] Implement some common Params for regression in PySpark
LinearRegression and LogisticRegression lack of some Params for Python, and some Params are not shared classes which lead we need to write them for each class. These kinds of Params are list here:
```scala
HasElasticNetParam
HasFitIntercept
HasStandardization
HasThresholds
```
Here we implement them in shared params at Python side and make LinearRegression/LogisticRegression parameters peer with Scala one.

Author: Yanbo Liang <ybliang8@gmail.com>

Closes #8508 from yanboliang/spark-10026.
2015-09-11 08:50:35 -07:00
..
__init__.py [SPARK-9828] [PYSPARK] Mutable values should not be default arguments 2015-08-14 12:46:05 -07:00
_shared_params_code_gen.py [SPARK-10026] [ML] [PySpark] Implement some common Params for regression in PySpark 2015-09-11 08:50:35 -07:00
shared.py [SPARK-10026] [ML] [PySpark] Implement some common Params for regression in PySpark 2015-09-11 08:50:35 -07:00