aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/test
diff options
context:
space:
mode:
authorXinghao <pxinghao@gmail.com>2013-07-28 10:33:57 -0700
committerXinghao <pxinghao@gmail.com>2013-07-28 10:33:57 -0700
commitccfa362ddec1bc942785798dea41c3aac52df60f (patch)
tree297974ce4629e8659f97e2fa8f60803fdbc4e7de /mllib/src/test
parentb0bbc7f6a8da8e4c8e4e5bb656d7c7eed9b24511 (diff)
downloadspark-ccfa362ddec1bc942785798dea41c3aac52df60f.tar.gz
spark-ccfa362ddec1bc942785798dea41c3aac52df60f.tar.bz2
spark-ccfa362ddec1bc942785798dea41c3aac52df60f.zip
Change *_LocalRandomSGD to *LocalRandomSGD
Diffstat (limited to 'mllib/src/test')
-rw-r--r--mllib/src/test/scala/spark/mllib/classification/LogisticRegressionSuite.scala23
-rw-r--r--mllib/src/test/scala/spark/mllib/classification/SVMSuite.scala4
-rw-r--r--mllib/src/test/scala/spark/mllib/regression/LassoSuite.scala8
3 files changed, 9 insertions, 26 deletions
diff --git a/mllib/src/test/scala/spark/mllib/classification/LogisticRegressionSuite.scala b/mllib/src/test/scala/spark/mllib/classification/LogisticRegressionSuite.scala
index 827ca66330..144b8b1bc7 100644
--- a/mllib/src/test/scala/spark/mllib/classification/LogisticRegressionSuite.scala
+++ b/mllib/src/test/scala/spark/mllib/classification/LogisticRegressionSuite.scala
@@ -1,6 +1,3 @@
-<<<<<<< HEAD:mllib/src/test/scala/spark/mllib/classification/LogisticRegressionSuite.scala
-package spark.mllib.classification
-=======
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@@ -18,8 +15,7 @@ package spark.mllib.classification
* limitations under the License.
*/
-package spark.mllib.regression
->>>>>>> FETCH_HEAD:mllib/src/test/scala/spark/mllib/regression/LogisticRegressionSuite.scala
+package spark.mllib.classification
import scala.util.Random
@@ -37,13 +33,6 @@ class LogisticRegressionSuite extends FunSuite with BeforeAndAfterAll {
System.clearProperty("spark.driver.port")
}
-<<<<<<< HEAD:mllib/src/test/scala/spark/mllib/classification/LogisticRegressionSuite.scala
- // Test if we can correctly learn A, B where Y = logistic(A + B*X)
- test("LogisticRegression_LocalRandomSGD") {
- val nPoints = 10000
- val rnd = new Random(42)
-
-=======
// Generate input of the form Y = logistic(offset + scale*X)
def generateLogisticInput(
offset: Double,
@@ -51,7 +40,6 @@ class LogisticRegressionSuite extends FunSuite with BeforeAndAfterAll {
nPoints: Int,
seed: Int): Seq[(Double, Array[Double])] = {
val rnd = new Random(seed)
->>>>>>> FETCH_HEAD:mllib/src/test/scala/spark/mllib/regression/LogisticRegressionSuite.scala
val x1 = Array.fill[Double](nPoints)(rnd.nextGaussian())
// NOTE: if U is uniform[0, 1] then ln(u) - ln(1-u) is Logistic(0,1)
@@ -91,12 +79,7 @@ class LogisticRegressionSuite extends FunSuite with BeforeAndAfterAll {
val testRDD = sc.parallelize(testData, 2)
testRDD.cache()
-<<<<<<< HEAD:mllib/src/test/scala/spark/mllib/classification/LogisticRegressionSuite.scala
- val lr = new LogisticRegression_LocalRandomSGD().setStepSize(10.0)
- .setNumIterations(20)
-=======
- val lr = new LogisticRegression().setStepSize(10.0).setNumIterations(20)
->>>>>>> FETCH_HEAD:mllib/src/test/scala/spark/mllib/regression/LogisticRegressionSuite.scala
+ val lr = new LogisticRegressionLocalRandomSGD().setStepSize(10.0).setNumIterations(20)
val model = lr.train(testRDD)
@@ -128,7 +111,7 @@ class LogisticRegressionSuite extends FunSuite with BeforeAndAfterAll {
testRDD.cache()
// Use half as many iterations as the previous test.
- val lr = new LogisticRegression().setStepSize(10.0).setNumIterations(10)
+ val lr = new LogisticRegressionLocalRandomSGD().setStepSize(10.0).setNumIterations(10)
val model = lr.train(testRDD, initialWeights)
diff --git a/mllib/src/test/scala/spark/mllib/classification/SVMSuite.scala b/mllib/src/test/scala/spark/mllib/classification/SVMSuite.scala
index 50cf260f49..0d781c310c 100644
--- a/mllib/src/test/scala/spark/mllib/classification/SVMSuite.scala
+++ b/mllib/src/test/scala/spark/mllib/classification/SVMSuite.scala
@@ -19,7 +19,7 @@ class SVMSuite extends FunSuite with BeforeAndAfterAll {
System.clearProperty("spark.driver.port")
}
- test("SVM_LocalRandomSGD") {
+ test("SVMLocalRandomSGD") {
val nPoints = 10000
val rnd = new Random(42)
@@ -46,7 +46,7 @@ class SVMSuite extends FunSuite with BeforeAndAfterAll {
writer_data.write("\n")})
writer_data.close()
- val svm = new SVM_LocalRandomSGD().setStepSize(1.0)
+ val svm = new SVMLocalRandomSGD().setStepSize(1.0)
.setRegParam(1.0)
.setNumIterations(100)
diff --git a/mllib/src/test/scala/spark/mllib/regression/LassoSuite.scala b/mllib/src/test/scala/spark/mllib/regression/LassoSuite.scala
index 9836ac54c1..0c39e1e09b 100644
--- a/mllib/src/test/scala/spark/mllib/regression/LassoSuite.scala
+++ b/mllib/src/test/scala/spark/mllib/regression/LassoSuite.scala
@@ -17,7 +17,7 @@ class LassoSuite extends FunSuite with BeforeAndAfterAll {
System.clearProperty("spark.driver.port")
}
- test("Lasso_LocalRandomSGD") {
+ test("LassoLocalRandomSGD") {
val nPoints = 10000
val rnd = new Random(42)
@@ -36,14 +36,14 @@ class LassoSuite extends FunSuite with BeforeAndAfterAll {
val testRDD = sc.parallelize(testData, 2)
testRDD.cache()
- val ls = new Lasso_LocalRandomSGD().setStepSize(1.0)
+ val ls = new LassoLocalRandomSGD().setStepSize(1.0)
.setRegParam(0.01)
.setNumIterations(20)
val model = ls.train(testRDD)
- val weight0 = model.weights.get(0)
- val weight1 = model.weights.get(1)
+ val weight0 = model.weights(0)
+ val weight1 = model.weights(1)
assert(weight0 >= -1.60 && weight0 <= -1.40, weight0 + " not in [-1.6, -1.4]")
assert(weight1 >= -1.0e-3 && weight1 <= 1.0e-3, weight1 + " not in [-0.001, 0.001]")
assert(model.intercept >= 1.9 && model.intercept <= 2.1, model.intercept + " not in [1.9, 2.1]")