Skip to content
Snippets Groups Projects
Commit 1b10b811 authored by Xiangrui Meng's avatar Xiangrui Meng Committed by Reynold Xin
Browse files

[SPARK-2495][MLLIB] remove private[mllib] from linear models' constructors

This is part of SPARK-2495 to allow users construct linear models manually.

Author: Xiangrui Meng <meng@databricks.com>

Closes #1492 from mengxr/public-constructor and squashes the following commits:

a48b766 [Xiangrui Meng] remove private[mllib] from linear models' constructors
parent fa51b0fb
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ import org.apache.spark.rdd.RDD ...@@ -30,7 +30,7 @@ import org.apache.spark.rdd.RDD
* @param weights Weights computed for every feature. * @param weights Weights computed for every feature.
* @param intercept Intercept computed for this model. * @param intercept Intercept computed for this model.
*/ */
class LogisticRegressionModel private[mllib] ( class LogisticRegressionModel (
override val weights: Vector, override val weights: Vector,
override val intercept: Double) override val intercept: Double)
extends GeneralizedLinearModel(weights, intercept) with ClassificationModel with Serializable { extends GeneralizedLinearModel(weights, intercept) with ClassificationModel with Serializable {
......
...@@ -30,7 +30,7 @@ import org.apache.spark.rdd.RDD ...@@ -30,7 +30,7 @@ import org.apache.spark.rdd.RDD
* @param weights Weights computed for every feature. * @param weights Weights computed for every feature.
* @param intercept Intercept computed for this model. * @param intercept Intercept computed for this model.
*/ */
class SVMModel private[mllib] ( class SVMModel (
override val weights: Vector, override val weights: Vector,
override val intercept: Double) override val intercept: Double)
extends GeneralizedLinearModel(weights, intercept) with ClassificationModel with Serializable { extends GeneralizedLinearModel(weights, intercept) with ClassificationModel with Serializable {
......
...@@ -28,7 +28,7 @@ import org.apache.spark.rdd.RDD ...@@ -28,7 +28,7 @@ import org.apache.spark.rdd.RDD
* @param weights Weights computed for every feature. * @param weights Weights computed for every feature.
* @param intercept Intercept computed for this model. * @param intercept Intercept computed for this model.
*/ */
class LassoModel private[mllib] ( class LassoModel (
override val weights: Vector, override val weights: Vector,
override val intercept: Double) override val intercept: Double)
extends GeneralizedLinearModel(weights, intercept) extends GeneralizedLinearModel(weights, intercept)
......
...@@ -27,7 +27,7 @@ import org.apache.spark.mllib.optimization._ ...@@ -27,7 +27,7 @@ import org.apache.spark.mllib.optimization._
* @param weights Weights computed for every feature. * @param weights Weights computed for every feature.
* @param intercept Intercept computed for this model. * @param intercept Intercept computed for this model.
*/ */
class LinearRegressionModel private[mllib] ( class LinearRegressionModel (
override val weights: Vector, override val weights: Vector,
override val intercept: Double) override val intercept: Double)
extends GeneralizedLinearModel(weights, intercept) with RegressionModel with Serializable { extends GeneralizedLinearModel(weights, intercept) with RegressionModel with Serializable {
......
...@@ -28,7 +28,7 @@ import org.apache.spark.mllib.linalg.Vector ...@@ -28,7 +28,7 @@ import org.apache.spark.mllib.linalg.Vector
* @param weights Weights computed for every feature. * @param weights Weights computed for every feature.
* @param intercept Intercept computed for this model. * @param intercept Intercept computed for this model.
*/ */
class RidgeRegressionModel private[mllib] ( class RidgeRegressionModel (
override val weights: Vector, override val weights: Vector,
override val intercept: Double) override val intercept: Double)
extends GeneralizedLinearModel(weights, intercept) extends GeneralizedLinearModel(weights, intercept)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment