Skip to content

Commit

Permalink
Remove dead local store
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbert committed Jun 9, 2021
1 parent 1d51a0f commit 1b6a0f9
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,10 @@ private FeatureInitializer[] makeInitializers() {
centre[1].getMean(),
centre[2].getMean()
};
final double s = 0.1;
final double[] dev = new double[] {
s * centre[0].getStandardDeviation(),
s * centre[1].getStandardDeviation(),
s * centre[2].getStandardDeviation()
0.1 * centre[0].getStandardDeviation(),
0.1 * centre[1].getStandardDeviation(),
0.1 * centre[2].getStandardDeviation()
};

final UniformRandomProvider rng = RandomSource.create(RandomSource.SPLIT_MIX_64);
Expand Down

0 comments on commit 1b6a0f9

Please sign in to comment.