model = GIS.trainModel(maxit,
new OnePassRealValueDataIndexer(es, cutoff),
USE_SMOOTHING);
}
writer = new SuffixSensitiveGISModelWriter(model, outputFile);
} else if (type.equals("perceptron")) {
//System.err.println("Perceptron training");
model = new PerceptronTrainer().trainModel(maxit, new OnePassDataIndexer(es, cutoff), cutoff);