Examples of PartOfSpeechFeaturesExtractor


Examples of org.apache.ctakes.relationextractor.ae.features.PartOfSpeechFeaturesExtractor

    @Override
    protected List<RelationFeaturesExtractor> getFeatureExtractors() {
      return Lists.newArrayList(
                    new TokenFeaturesExtractor()
                  , new PartOfSpeechFeaturesExtractor()
//                  , new EventArgumentPropertyExtractor()
                  , new SectionHeaderRelationExtractor()
                  , new NearbyVerbTenseRelationExtractor()
                  , new CheckSpecialWordRelationExtractor()
                  , new UmlsFeatureExtractor()
View Full Code Here

Examples of org.apache.ctakes.relationextractor.ae.features.PartOfSpeechFeaturesExtractor

  @Override
  protected List<RelationFeaturesExtractor> getFeatureExtractors() {
    return Lists.newArrayList(
        new TokenFeaturesExtractor()
        , new PartOfSpeechFeaturesExtractor()
        //                , new TemporalAttributeFeatureExtractor()
        //        , new EventTimeFlatTreeFeatureExtractor()
        , new TemporalPETExtractor()
        //        , new TemporalPathExtractor()
        //        , new EventVerbRelationTreeExtractor()
View Full Code Here

Examples of org.apache.ctakes.relationextractor.ae.features.PartOfSpeechFeaturesExtractor

   * @return The list of feature extractors to use.
   */
  protected List<RelationFeaturesExtractor> getFeatureExtractors() {
    return Lists.newArrayList(
        new TokenFeaturesExtractor(),
        new PartOfSpeechFeaturesExtractor(),
        new PhraseChunkingExtractor(),
        new NamedEntityFeaturesExtractor(),
        new DependencyTreeFeaturesExtractor(),
        new DependencyPathFeaturesExtractor());
  }
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.