int target = 1;
// random rules
List<Rule> rules = new ArrayList<Rule>();
for (int index = 0; index < nbrules; index++) {
rules.add(new RandomRule(index, target, rng));
}
// dataset
// This is sensitive to the working directory where the test is run:
FileSystem fs = FileSystem.get(new Configuration());