Package org.apache.ctakes.smokingstatus.util

Examples of org.apache.ctakes.smokingstatus.util.TruthValue


          ssClass = Const.CLASS_UNKNOWN;
        } else {
          throw new Exception("Invalid truth value for line:" + line);
        }

        TruthValue tVal = (TruthValue) iv_truthMap.get(recordID);
        if (tVal == null) {
          tVal = new TruthValue();
          tVal.iv_sentenceList = new ArrayList<String>();
          tVal.iv_classification = ssClass;
        }

        tVal.iv_sentenceList.add(sentence);
View Full Code Here

TOP

Related Classes of org.apache.ctakes.smokingstatus.util.TruthValue

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.