delete(output);
init(conf, new Path(modelFolder));
MapOnlyJobBuilder job = new MapOnlyJobBuilder(conf);
job.setOutput(new Path(output), new HadoopOutputFormat(TextOutputFormat.class), Text.class, NullWritable.class);
job.addInput(new Path(input), new HadoopInputFormat(TextInputFormat.class), new MapOnlyMapper<LongWritable, Text, Text, NullWritable>() {
protected void map(LongWritable key, Text value, Context context) throws IOException ,InterruptedException {
value.set(value.toString() + "\t" + classify(value.toString()));
context.write(value, NullWritable.get());
}