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

    https://github.com/apache/spark/pull/11694#discussion_r56056648
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/ml/regression/GeneralizedLinearRegression.scala
 ---
    @@ -633,3 +755,179 @@ object GeneralizedLinearRegressionModel extends 
MLReadable[GeneralizedLinearRegr
         }
       }
     }
    +
    +/**
    + * :: Experimental ::
    + * Summarizing Generalized Linear regression Fits.
    + *
    + * @param predictions predictions outputted by the model's `transform` 
method
    + * @param predictionCol field in "predictions" which gives the prediction 
value of each instance
    + * @param family the family object of the model
    + * @param link the link object of the model
    + * @param model the model that should be summarized
    + * @param diagInvAtWA diagonal of matrix (A^T * W * A)^-1 in the last 
iteration
    + * @param numIterations number of iterations
    + */
    +@Since("2.0.0")
    +@Experimental
    +class GeneralizedLinearRegressionSummary private[regression] (
    +    @transient val predictions: DataFrame,
    +    val predictionCol: String,
    +    val family: GeneralizedLinearRegression.Family,
    +    val link: GeneralizedLinearRegression.Link,
    --- End diff --
    
    ditto


---
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