}
private static void testCorpus(String name, String inFolder, String outFolder, String clusters, String threshold, String epsilon){
Learner l = new Learner(Integer.parseInt(clusters),Integer.parseInt(threshold),Double.parseDouble(epsilon));
Corpus c = new Corpus(name,l);
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy HH-mm-ss");
String outName = String.format("%1$s %2$s", name, sdf.format(cal.getTime()));
File f1 = new File(inFolder);