for (int i = 0; i < count; ++i)
{
double x1 = 5 + shift1 + rand.nextDouble();
double y1 = 5 + rand.nextDouble();
Sample v1 = new Sample(null, DataUtils.asList(x1, y1), DataUtils.asList(0, 1));
double x2 = 5 + shift2 + rand.nextDouble();
double y2 = 5 + rand.nextDouble();
Sample v2 = new Sample(null, DataUtils.asList(x2, y2), DataUtils.asList(1, 0));
data.add(v1);
data.add(v2);
}