Github user dbtsai commented on a diff in the pull request:

    https://github.com/apache/spark/pull/7024#discussion_r33288184
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/ml/param/shared/SharedParamsCodeGen.scala 
---
    @@ -53,6 +53,7 @@ private[shared] object SharedParamsCodeGen {
           ParamDesc[Int]("checkpointInterval", "checkpoint interval (>= 1)",
             isValid = "ParamValidators.gtEq(1)"),
           ParamDesc[Boolean]("fitIntercept", "whether to fit an intercept 
term", Some("true")),
    +      ParamDesc[Boolean]("standardization", "If the model should perform 
standardization", Some("true")),
    --- End diff --
    
    Technically, It's not performing standardization on the model, maybe we can 
have more descriptive sentence like the following for this. 
    ```scala
          ParamDesc[Boolean]("standardization", "whether to standardize the 
training features" +
            " prior to fitting the model sequence. Note that the coefficients 
of models are" +
            " always returned on the original scale.", Some("true")),
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to