Skip to content

Commit

Permalink
Removed unusued code
Browse files Browse the repository at this point in the history
  • Loading branch information
tgaloppo committed Dec 17, 2014
1 parent 42b2142 commit 20ebca1
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,6 @@ class GaussianMixtureModelEM private (
}
}

/*var gaussians = (0 until k).map{ i =>
(1.0 / k,
vectorMean(samples.slice(i * nSamples, (i + 1) * nSamples)),
initCovariance(samples.slice(i * nSamples, (i + 1) * nSamples)))
}.toArray
*/
val accW = new Array[Accumulator[Double]](k)
val accMu = new Array[Accumulator[DenseDoubleVector]](k)
val accSigma = new Array[Accumulator[DenseDoubleMatrix]](k)
Expand Down

0 comments on commit 20ebca1

Please sign in to comment.