aboutsummaryrefslogtreecommitdiff
path: root/project/MimaExcludes.scala
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2015-12-10 14:05:45 +0000
committerSean Owen <sowen@cloudera.com>2015-12-10 14:05:45 +0000
commit21b3d2a75f679b252e293000d706741dca33624a (patch)
treed7d204c4c546ea64ca8fdb201f1c8c55625df146 /project/MimaExcludes.scala
parente29704f90dfe67d9e276d242699ac0a00f64fb91 (diff)
downloadspark-21b3d2a75f679b252e293000d706741dca33624a.tar.gz
spark-21b3d2a75f679b252e293000d706741dca33624a.tar.bz2
spark-21b3d2a75f679b252e293000d706741dca33624a.zip
[SPARK-11530][MLLIB] Return eigenvalues with PCA model
Add `computePrincipalComponentsAndVariance` to also compute PCA's explained variance. CC mengxr Author: Sean Owen <sowen@cloudera.com> Closes #9736 from srowen/SPARK-11530.
Diffstat (limited to 'project/MimaExcludes.scala')
-rw-r--r--project/MimaExcludes.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 685cb419ca..edae59d882 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -58,6 +58,9 @@ object MimaExcludes {
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.ml.classification.LogisticRegressionSummary.featuresCol")
) ++ Seq(
+ // SPARK-11530
+ ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.mllib.feature.PCAModel.this")
+ ) ++ Seq(
// SPARK-10381 Fix types / units in private AskPermissionToCommitOutput RPC message.
// This class is marked as `private` but MiMa still seems to be confused by the change.
ProblemFilters.exclude[MissingMethodProblem](