Examples of Covered


Examples of org.cleartk.classifier.feature.extractor.CleartkExtractor.Covered

        new TypePathExtractor(BaseToken.class, "partOfSpeech"));
    this.contextExtractor = new CleartkExtractor(
        BaseToken.class,
        baseExtractor,
        new Preceding(3),
        new Covered(),
        new Following(3));
    this.verbTensePatternExtractor = new NearbyVerbTenseXExtractor();
    this.sectionIDExtractor = new SectionHeaderExtractor();
    this.closestVerbExtractor = new ClosestVerbExtractor();
    this.timeXExtractor = new TimeXExtractor();
View Full Code Here

Examples of org.cleartk.classifier.feature.extractor.CleartkExtractor.Covered

        new TypePathExtractor(BaseToken.class, "partOfSpeech"));
    this.contextExtractor = new CleartkExtractor(
        BaseToken.class,
        baseExtractor,
        new Preceding(3),
        new Covered(),
        new Following(3));
    this.verbTensePatternExtractor = new NearbyVerbTenseXExtractor();
    this.sectionIDExtractor = new SectionHeaderExtractor();
    this.closestVerbExtractor = new ClosestVerbExtractor();
    this.timeXExtractor = new TimeXExtractor();
View Full Code Here

Examples of org.cleartk.classifier.feature.extractor.CleartkExtractor.Covered

    this.contextExtractor = new CleartkExtractor(
        BaseToken.class,
        baseExtractor,
        new Preceding(3),
        new Covered(),
        new Following(3));

  }
View Full Code Here

Examples of org.cleartk.classifier.feature.extractor.CleartkExtractor.Covered

        new TypePathExtractor(BaseToken.class, "partOfSpeech"));
    this.contextExtractor = new CleartkExtractor(
        BaseToken.class,
        baseExtractor,
        new Preceding(3),
        new Covered(),
        new Following(3));
    this.verbTensePatternExtractor = new NearbyVerbTenseXExtractor();
    this.sectionIDExtractor = new SectionHeaderExtractor();
    this.closestVerbExtractor = new ClosestVerbExtractor();
    this.timeXExtractor = new TimeXExtractor();
View Full Code Here

Examples of org.cleartk.classifier.feature.extractor.CleartkExtractor.Covered

        charExtractors,
        new TypePathExtractor(BaseToken.class, "partOfSpeech"));
   
    featureExtractors = new ArrayList<SimpleFeatureExtractor>();
//    featureExtractors.add(new CleartkExtractor(BaseToken.class, new CoveredTextExtractor(), new Bag(new Covered())));
    featureExtractors.add(new CleartkExtractor(BaseToken.class, allExtractors, new Bag(new Covered())));
//    featureExtractors.add(charExtractors);
    wordTypeExtractor = new CleartkExtractor(BaseToken.class, new TimeWordTypeExtractor(), new Bag(new Covered()));
//    featureExtractors.add(new CleartkExtractor(BaseToken.class, new CoveredTextExtractor(), new Bag(new Preceding(1))));
//   featureExtractors.add(new CleartkExtractor(BaseToken.class, new CoveredTextExtractor(), new Bag(new Following(1))));
    // bag of constituent descendent labels
//    featureExtractors.add(new CleartkExtractor(TreebankNode.class, new TypePathExtractor(TreebankNode.class, "nodeType"), new Bag(new Covered())));
   
View Full Code Here

Examples of org.cleartk.classifier.feature.extractor.ContextExtractor.Covered

        new Following(2)));

    ContextExtractor<BaseToken> tokenContextExtractor1 = new ContextExtractor<BaseToken>(
        BaseToken.class,
        new SpannedTextExtractor(),
        new ContextExtractor.Ngram(new Covered()),
       
        new ContextExtractor.Ngram(new Preceding(1)),
        new ContextExtractor.Ngram(new Preceding(2)),
        //new ContextExtractor.Ngram(new Preceding(1, 2)),
        new ContextExtractor.Ngram(new Preceding(3)),
        //new ContextExtractor.Ngram(new Preceding(2, 3)),
        new ContextExtractor.Ngram(new Following(1)),
        new ContextExtractor.Ngram(new Following(2)),
        //new ContextExtractor.Ngram(new Following(1, 2)),
        new ContextExtractor.Ngram(new Following(3))
        //new ContextExtractor.Ngram(new Following(2,3))
        );
    tokenContextFeatureExtractors = new ArrayList<ContextExtractor<BaseToken>>();
    tokenContextFeatureExtractors.add(tokenContextExtractor1);
   
    TypePathExtractor posExtractor = new TypePathExtractor(BaseToken.class, "partOfSpeech");
    ContextExtractor<BaseToken> extractor2 = new ContextExtractor<BaseToken>(
        BaseToken.class,
        posExtractor,
        new ContextExtractor.Ngram(new Covered()),
        new ContextExtractor.Ngram(new Preceding(1)),
        new ContextExtractor.Ngram(new Preceding(2)),
        new ContextExtractor.Ngram(new Following(1)),
        new ContextExtractor.Ngram(new Following(2))
        /*
 
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.