Skip to content

Commit

Permalink
Some code clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
DB Tsai committed Apr 29, 2015
1 parent f8cbb0a commit 834d527
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ object LinearDataGenerator {
seed: Int,
eps: Double = 0.1): Seq[LabeledPoint] = {
generateLinearInput(intercept, weights,
Array.fill[Double](weights.size)(0.0),
Array.fill[Double](weights.size)(1.0 / 3.0),
Array.fill[Double](weights.length)(0.0),
Array.fill[Double](weights.length)(1.0 / 3.0),
nPoints, seed, eps)}

/**
Expand Down Expand Up @@ -105,8 +105,7 @@ object LinearDataGenerator {
val x = Array.fill[Array[Double]](nPoints)(
Array.fill[Double](weights.length)(rnd.nextDouble()))

x.foreach {
case v =>
x.foreach { v =>
var i = 0
while (i < v.length) {
v(i) = (v(i) - 0.5) * math.sqrt(12.0 * xVariance(i)) + xMean(i)
Expand Down

0 comments on commit 834d527

Please sign in to comment.