// apply the filters on the Lexicon
int minFreq = Integer.parseInt(props
.getProperty("classification_minFreq"));
int maxFreq = Integer.MAX_VALUE;
lexicon.pruneTermsDocFreq(minFreq, maxFreq);
}
// change the indices of the attributes to remove
// gaps between them
Map<Integer, Integer> equiv = null;