Repository: spark Updated Branches: refs/heads/branch-1.5 e5fbe4f24 -> 40b89c38a
[SPARK-10076] [ML] make MultilayerPerceptronClassifier layers and weights public Fix the issue that ```layers``` and ```weights``` should be public variables of ```MultilayerPerceptronClassificationModel```. Users can not get ```layers``` and ```weights``` from a ```MultilayerPerceptronClassificationModel``` currently. Author: Yanbo Liang <[email protected]> Closes #8263 from yanboliang/mlp-public. (cherry picked from commit dd0614fd618ad28cb77aecfbd49bb319b98fdba0) Signed-off-by: Xiangrui Meng <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/40b89c38 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/40b89c38 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/40b89c38 Branch: refs/heads/branch-1.5 Commit: 40b89c38ada5edfdd1478dc8f3c983ebcbcc56d5 Parents: e5fbe4f Author: Yanbo Liang <[email protected]> Authored: Mon Aug 17 23:57:02 2015 -0700 Committer: Xiangrui Meng <[email protected]> Committed: Mon Aug 17 23:57:14 2015 -0700 ---------------------------------------------------------------------- .../spark/ml/classification/MultilayerPerceptronClassifier.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/40b89c38/mllib/src/main/scala/org/apache/spark/ml/classification/MultilayerPerceptronClassifier.scala ---------------------------------------------------------------------- diff --git a/mllib/src/main/scala/org/apache/spark/ml/classification/MultilayerPerceptronClassifier.scala b/mllib/src/main/scala/org/apache/spark/ml/classification/MultilayerPerceptronClassifier.scala index c154561..ccca4ec 100644 --- a/mllib/src/main/scala/org/apache/spark/ml/classification/MultilayerPerceptronClassifier.scala +++ b/mllib/src/main/scala/org/apache/spark/ml/classification/MultilayerPerceptronClassifier.scala @@ -172,8 +172,8 @@ class MultilayerPerceptronClassifier(override val uid: String) @Experimental class MultilayerPerceptronClassificationModel private[ml] ( override val uid: String, - layers: Array[Int], - weights: Vector) + val layers: Array[Int], + val weights: Vector) extends PredictionModel[Vector, MultilayerPerceptronClassificationModel] with Serializable { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
