-
- Downloads
[SPARK-7985] [ML] [MLlib] [Docs] Remove "fittingParamMap" references. Updating...
[SPARK-7985] [ML] [MLlib] [Docs] Remove "fittingParamMap" references. Updating ML Doc "Estimator, Transformer, and Param" examples. Updating ML Doc's *"Estimator, Transformer, and Param"* example to use `model.extractParamMap` instead of `model.fittingParamMap`, which no longer exists. mengxr, I believe this addresses (part of) the *update documentation* TODO list item from [PR 5820](https://github.com/apache/spark/pull/5820). Author: Mike Dusenberry <dusenberrymw@gmail.com> Closes #6514 from dusenberrymw/Fix_ML_Doc_Estimator_Transformer_Param_Example and squashes the following commits: 6366e1f [Mike Dusenberry] Updating instances of model.extractParamMap to model.parent.extractParamMap, since the Params of the parent Estimator could possibly differ from thos of the Model. d850e0e [Mike Dusenberry] Removing all references to "fittingParamMap" throughout Spark, since it has been removed. 0480304 [Mike Dusenberry] Updating the ML Doc "Estimator, Transformer, and Param" Java example to use model.extractParamMap() instead of model.fittingParamMap(), which no longer exists. 7d34939 [Mike Dusenberry] Updating ML Doc "Estimator, Transformer, and Param" example to use model.extractParamMap instead of model.fittingParamMap, which no longer exists.
Showing
- docs/ml-guide.md 4 additions, 4 deletionsdocs/ml-guide.md
- mllib/src/main/scala/org/apache/spark/ml/classification/GBTClassifier.scala 1 addition, 1 deletion...la/org/apache/spark/ml/classification/GBTClassifier.scala
- mllib/src/main/scala/org/apache/spark/ml/classification/RandomForestClassifier.scala 1 addition, 1 deletion...ache/spark/ml/classification/RandomForestClassifier.scala
- mllib/src/main/scala/org/apache/spark/ml/regression/GBTRegressor.scala 1 addition, 1 deletion...n/scala/org/apache/spark/ml/regression/GBTRegressor.scala
- mllib/src/main/scala/org/apache/spark/ml/regression/RandomForestRegressor.scala 1 addition, 1 deletion...rg/apache/spark/ml/regression/RandomForestRegressor.scala
- mllib/src/test/scala/org/apache/spark/ml/classification/DecisionTreeClassifierSuite.scala 1 addition, 1 deletion...spark/ml/classification/DecisionTreeClassifierSuite.scala
- mllib/src/test/scala/org/apache/spark/ml/classification/GBTClassifierSuite.scala 1 addition, 1 deletion...g/apache/spark/ml/classification/GBTClassifierSuite.scala
- mllib/src/test/scala/org/apache/spark/ml/classification/RandomForestClassifierSuite.scala 1 addition, 1 deletion...spark/ml/classification/RandomForestClassifierSuite.scala
- mllib/src/test/scala/org/apache/spark/ml/regression/DecisionTreeRegressorSuite.scala 1 addition, 1 deletion...ache/spark/ml/regression/DecisionTreeRegressorSuite.scala
- mllib/src/test/scala/org/apache/spark/ml/regression/GBTRegressorSuite.scala 1 addition, 1 deletion...la/org/apache/spark/ml/regression/GBTRegressorSuite.scala
- mllib/src/test/scala/org/apache/spark/ml/regression/RandomForestRegressorSuite.scala 1 addition, 1 deletion...ache/spark/ml/regression/RandomForestRegressorSuite.scala
Please register or sign in to comment