Skip to content

Commit

Permalink
512
Browse files Browse the repository at this point in the history
  • Loading branch information
pbailis committed Jul 4, 2016
1 parent 8be8bf8 commit d139fda
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ private void runOnConf(String prefix) throws Exception {
double percentageOutliers = 0.01;

for(Double labelNoise : Lists.newArrayList(0d, 0.01, 0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5)) {
for (Integer outlierClusters : Lists.newArrayList(10, 100, 1000, 10000)) {
for (Integer outlierClusters : Lists.newArrayList(10, 100, 1000, 512, 256, 128)) {
trial(prefix+"labelNoise", numPoints, percentageOutliers, outlierClusters, labelNoise, 0);
}
}

for(Double pointNoise : Lists.newArrayList(0d, 0.01, 0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5)) {
for (Integer outlierClusters : Lists.newArrayList(10, 100, 1000, 10000)) {
for (Integer outlierClusters : Lists.newArrayList(10, 100, 1000, 512, 256, 128)) {
trial(prefix+"pointNoise", numPoints, percentageOutliers, outlierClusters, 0, pointNoise);
}
}
Expand Down

0 comments on commit d139fda

Please sign in to comment.