Package joshua.discriminative.feature_related.feature_function

Examples of joshua.discriminative.feature_related.feature_function.BaselineComboFF


            double interWeight = new Double(tems[1]);
            positions.add(pos);
            interWeights.add(interWeight);
          }
          System.out.println("baseline combo model");
          FeatureFunction ff =  new BaselineComboFF(ngramStateID+1+featFunctions.size(), weight, positions, interWeights);
          featFunctions.add(ff);
          logger.info( String.format("Baseline combo model with weight: " + weight));   
         
        }else if(fds[0].compareTo("vconstituent") == 0 && fds.length == 2) {
          /*
 
View Full Code Here

TOP

Related Classes of joshua.discriminative.feature_related.feature_function.BaselineComboFF

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.