@Test
public void testGetConf() throws Exception {
BooleanFeatureSet<String> features = StringFeatures.featureSet;
GISModel model = GIS.trainModel(
new ListEventStream(StringFeatures.dataSet.getInstances()), 100, 0);
OpenNlpConfFunction<String> conf = new OpenNlpConfFunction<String>(model, features);
double janeConf = conf.getConf("jane");
double ofConf = conf.getConf("of");
System.out.println(ofConf);
System.out.println(janeConf);