feature.runJob(input, output, params);
log.info("Calculating Tf-Idf...");
//Calculate the TfIdf for each word in each label
BayesTfIdfDriver tfidf = new BayesTfIdfDriver();
tfidf.runJob(input, output, params);
log.info("Calculating weight sums for labels and features...");
//Calculate the Sums of weights for each label, for each feature and for each feature and for each label
BayesWeightSummerDriver summer = new BayesWeightSummerDriver();
summer.runJob(input, output, params);