Package org.apache.ctakes.ytex.kernel.model

Examples of org.apache.ctakes.ytex.kernel.model.FeatureParentChild


      // 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);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.ctakes.ytex.kernel.model.FeatureParentChild

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.