// save the parent-child links
for (Map.Entry<FeatureRank, Set<FeatureRank>> childParentEntry : childParentMap
.entrySet()) {
FeatureRank child = childParentEntry.getKey();
for (FeatureRank parent : childParentEntry.getValue()) {
FeatureParentChild parchd = new FeatureParentChild();
parchd.setFeatureRankParent(parent);
parchd.setFeatureRankChild(child);
this.classifierEvaluationDao.saveFeatureParentChild(parchd);
}
}
}
}