// the stem of the word, the text of the word itself, plus
// features created from the word text like character ngrams
this.entityFeatureExtractors = Arrays.asList(
new CoveredTextExtractor(),
//new TypePathExtractor(IdentifiedAnnotation.class, "stem"),
new ProliferatingExtractor(
new SpannedTextExtractor(),
new LowerCaseProliferator(),
new CapitalTypeProliferator(),
new NumericTypeProliferator(),
new CharacterNGramProliferator(fromRight, 0, 2),