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

    https://github.com/apache/spark/pull/7099#discussion_r33641106
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/ml/regression/LinearRegression.scala ---
    @@ -208,20 +239,61 @@ class LinearRegression(override val uid: String)
     class LinearRegressionModel private[ml] (
         override val uid: String,
         val weights: Vector,
    -    val intercept: Double)
    +    val intercept: Double,
    +    val trainingSummary: LinearRegressionTrainingResults)
       extends RegressionModel[Vector, LinearRegressionModel]
       with LinearRegressionParams {
     
    +  /**
    +   * Evaluates the model on a test-set.
    +   * @param testset Test dataset to evaluate model on.
    +   * @return
    +   */
    +  def evaluate(testset: DataFrame): LinearRegressionResults = {
    +    val predictionAndObservations = testset
    +      .select($(labelCol), $(featuresCol))
    +      .map { case Row(label: Double, features: Vector) => 
(predict(features), label) }
    +
    +    new LinearRegressionResults(predictionAndObservations)
    +  }
    +
       override protected def predict(features: Vector): Double = {
         dot(features, weights) + intercept
       }
     
       override def copy(extra: ParamMap): LinearRegressionModel = {
    -    copyValues(new LinearRegressionModel(uid, weights, intercept), extra)
    +    copyValues(new LinearRegressionModel(uid, weights, intercept, 
trainingSummary), extra)
       }
     }
     
     /**
    + * :: Experimental ::
    + * Linear regression training results.
    + * @param predictionAndObservations dataframe with columns predictions (0) 
and observations(0).
    + * @param totalIterations total number of training iterations.
    + * @param objectiveTrace objective function value at each iteration.
    + */
    +@Experimental
    +class LinearRegressionTrainingResults(
    +    @transient predictionAndObservations: RDD[(Double, Double)],
    +    val totalIterations: Int,
    +    val objectiveTrace: Array[Double])
    +  extends LinearRegressionResults(predictionAndObservations)
    +
    +/**
    + * :: Experimental ::
    + * Linear regression results evaluated on a dataset.
    + * @param predictionAndObservations an RDD of (prediction, observation) 
pairs.
    + */
    +@Experimental
    +class LinearRegressionResults(@transient val predictionAndObservations: 
RDD[(Double, Double)])
    --- End diff --
    
    We should keep this constructor private for now


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to