Skip to content
Snippets Groups Projects
  • Yanbo Liang's avatar
    b656e613
    [SPARK-10026] [ML] [PySpark] Implement some common Params for regression in PySpark · b656e613
    Yanbo Liang authored
    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.
    b656e613
    History
    [SPARK-10026] [ML] [PySpark] Implement some common Params for regression in PySpark
    Yanbo Liang authored
    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.