LOGGER.info("printing the most similar words for the semantic partition" +
" starting at: " + dateString);
NearestNeighborFinder nnf =
new SimpleNearestNeighborFinder(semanticPartition);
// generate the similarity lists
for (String toExamine : interestingWords) {
SortedMultiMap<Double,String> mostSimilar =
nnf.getMostSimilar(toExamine, interestingWordNeighbors);
if (mostSimilar != null) {
File neighborFile =
new File(outputDir, toExamine + "-" + dateString + ".txt");
neighborFile.createNewFile(); // iff it doesn't already exist