Examples of MorphoFeatureType


Examples of edu.stanford.nlp.international.morph.MorphoFeatureSpecification.MorphoFeatureType

   */
  private String setupMorphoFeatures(String activeFeats) {
    String[] feats = activeFeats.split(",");
    morphoSpec = tlp.morphFeatureSpec();
    for(String feat : feats) {
      MorphoFeatureType fType = MorphoFeatureType.valueOf(feat.trim());
      morphoSpec.activate(fType);
    }
    return morphoSpec.toString();
  }
View Full Code Here

Examples of edu.stanford.nlp.international.morph.MorphoFeatureSpecification.MorphoFeatureType

    MorphoFeatures mFeats = new MorphoFeatures();
    for(String fPair : feats) {
      String[] keyValue = fPair.split(KEY_VAL_DELIM);
      if(keyValue.length != 2)//Manual state split annotations
        continue;
      MorphoFeatureType fName = MorphoFeatureType.valueOf(keyValue[0].trim());
      mFeats.addFeature(fName, keyValue[1].trim());
    }
   
    return mFeats;
  }
View Full Code Here

Examples of edu.stanford.nlp.international.morph.MorphoFeatureSpecification.MorphoFeatureType

        loadUniversalMap(optToks[1]);
     
      } else {
        //Maybe it's a morphological feature
        //Both of these calls will throw exceptions if the feature is illegal/invalid
        MorphoFeatureType feat = MorphoFeatureType.valueOf(optToks[0]);
        List<String> featVals = morphoSpec.getValues(feat);
        morphoSpec.activate(feat);
      }
    }
  }
View Full Code Here

Examples of edu.stanford.nlp.international.morph.MorphoFeatureSpecification.MorphoFeatureType

   */
  private String setupMorphoFeatures(String activeFeats) {
    String[] feats = activeFeats.split(",");
    morphoSpec = tlp.morphFeatureSpec();
    for(String feat : feats) {
      MorphoFeatureType fType = MorphoFeatureType.valueOf(feat.trim());
      morphoSpec.activate(fType);
    }
    return morphoSpec.toString();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.