aboutsummaryrefslogtreecommitdiff
path: root/project/MimaExcludes.scala
diff options
context:
space:
mode:
authorMeihua Wu <meihuawu@umich.edu>2015-09-21 12:09:00 -0700
committerDB Tsai <dbt@netflix.com>2015-09-21 12:09:00 -0700
commit331f0b10f78a37d96d3e573d211d74a0935265db (patch)
tree73fd4850825c1254df3967496ab4ee4625cc3454 /project/MimaExcludes.scala
parentca9fe540fe04e2e230d1e76526b5502bab152914 (diff)
downloadspark-331f0b10f78a37d96d3e573d211d74a0935265db.tar.gz
spark-331f0b10f78a37d96d3e573d211d74a0935265db.tar.bz2
spark-331f0b10f78a37d96d3e573d211d74a0935265db.zip
[SPARK-9642] [ML] LinearRegression should supported weighted data
In many modeling application, data points are not necessarily sampled with equal probabilities. Linear regression should support weighting which account the over or under sampling. work in progress. Author: Meihua Wu <meihuawu@umich.edu> Closes #8631 from rotationsymmetry/SPARK-9642.
Diffstat (limited to 'project/MimaExcludes.scala')
-rw-r--r--project/MimaExcludes.scala8
1 files changed, 6 insertions, 2 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 814a11e588..b2e6be7066 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -70,10 +70,14 @@ object MimaExcludes {
"org.apache.spark.scheduler.AskPermissionToCommitOutput.this"),
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"org.apache.spark.scheduler.AskPermissionToCommitOutput.apply")
- ) ++
- Seq(
+ ) ++ Seq(
ProblemFilters.exclude[MissingClassProblem](
"org.apache.spark.shuffle.FileShuffleBlockResolver$ShuffleFileGroup")
+ ) ++ Seq(
+ ProblemFilters.exclude[MissingMethodProblem](
+ "org.apache.spark.ml.regression.LeastSquaresAggregator.add"),
+ ProblemFilters.exclude[MissingMethodProblem](
+ "org.apache.spark.ml.regression.LeastSquaresCostFun.this")
)
case v if v.startsWith("1.5") =>
Seq(