@@ -81,7 +81,20 @@ object MimaExcludes {
81
81
) ++ Seq (
82
82
// SPARK-5166 Spark SQL API stabilization
83
83
ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.Transformer.transform" ),
84
- ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.Estimator.fit" )
84
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.Estimator.fit" ),
85
+ ProblemFilters .exclude[MissingMethodProblem ](" org.apache.spark.ml.Transformer.transform" ),
86
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.Pipeline.fit" ),
87
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.PipelineModel.transform" ),
88
+ ProblemFilters .exclude[MissingMethodProblem ](" org.apache.spark.ml.Estimator.fit" ),
89
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.Evaluator.evaluate" ),
90
+ ProblemFilters .exclude[MissingMethodProblem ](" org.apache.spark.ml.Evaluator.evaluate" ),
91
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.tuning.CrossValidator.fit" ),
92
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.tuning.CrossValidatorModel.transform" ),
93
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.feature.StandardScaler.fit" ),
94
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.feature.StandardScalerModel.transform" ),
95
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.classification.LogisticRegressionModel.transform" ),
96
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.classification.LogisticRegression.fit" ),
97
+ ProblemFilters .exclude[IncompatibleMethTypeProblem ](" org.apache.spark.ml.evaluation.BinaryClassificationEvaluator.evaluate" )
85
98
) ++ Seq (
86
99
// SPARK-5270
87
100
ProblemFilters .exclude[MissingMethodProblem ](
0 commit comments