-
- Downloads
[SPARK-6345][STREAMING][MLLIB] Fix for training with prediction
This patch fixes a reported bug causing model updates to not properly propagate to model predictions during streaming regression. These minor changes in model declaration fix the problem, and I expanded the tests to include the scenario in which the bug was arising. The two new tests failed prior to the patch and now pass. cc mengxr Author: freeman <the.freeman.lab@gmail.com> Closes #5037 from freeman-lab/train-predict-fix and squashes the following commits: 3af953e [freeman] Expand test coverage to include combined training and prediction 8f84fc8 [freeman] Move model declaration
Showing
- mllib/src/main/scala/org/apache/spark/mllib/classification/StreamingLogisticRegressionWithSGD.scala 2 additions, 0 deletions...b/classification/StreamingLogisticRegressionWithSGD.scala
- mllib/src/main/scala/org/apache/spark/mllib/regression/StreamingLinearAlgorithm.scala 3 additions, 3 deletions...che/spark/mllib/regression/StreamingLinearAlgorithm.scala
- mllib/src/main/scala/org/apache/spark/mllib/regression/StreamingLinearRegressionWithSGD.scala 2 additions, 0 deletions...k/mllib/regression/StreamingLinearRegressionWithSGD.scala
- mllib/src/test/scala/org/apache/spark/mllib/classification/StreamingLogisticRegressionSuite.scala 27 additions, 0 deletions...lib/classification/StreamingLogisticRegressionSuite.scala
- mllib/src/test/scala/org/apache/spark/mllib/regression/StreamingLinearRegressionSuite.scala 28 additions, 0 deletions...ark/mllib/regression/StreamingLinearRegressionSuite.scala
Please register or sign in to comment